]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoSimpleAnalysis.cxx
added initialization of AliFemtoSimpleAnalysis::fPerformSharedDaughterCut (coverity...
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoSimpleAnalysis.cxx
index 9024d957f98d2c9a45d0c69123068a8c3a3ef45a..f46a91ba3d06025667504fbd8a1351061f1c9896 100644 (file)
@@ -147,7 +147,8 @@ AliFemtoSimpleAnalysis::AliFemtoSimpleAnalysis() :
   fNumEventsToMix(0),
   fNeventsProcessed(0),
   fMinSizePartCollection(0),
-  fVerbose(kTRUE)
+  fVerbose(kTRUE),
+  fPerformSharedDaughterCut(kFALSE)
 {
   // Default constructor
   //  mControlSwitch     = 0;
@@ -169,7 +170,8 @@ AliFemtoSimpleAnalysis::AliFemtoSimpleAnalysis(const AliFemtoSimpleAnalysis& a)
   fNumEventsToMix(0),
   fNeventsProcessed(0),
   fMinSizePartCollection(0),
-  fVerbose(kTRUE)
+  fVerbose(kTRUE),
+  fPerformSharedDaughterCut(kFALSE)
 {
   // Copy constructor
   //AliFemtoSimpleAnalysis();
@@ -296,6 +298,8 @@ AliFemtoSimpleAnalysis& AliFemtoSimpleAnalysis::operator=(const AliFemtoSimpleAn
 
   fVerbose = aAna.fVerbose;
 
+  fPerformSharedDaughterCut = aAna.fPerformSharedDaughterCut;
+
   return *this;
 }
 //______________________