]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/jetfinder/AliEMCALJetFinderAlgo.cxx
updates for Effective C++ compiler flags
[u/mrichter/AliRoot.git] / EMCAL / jetfinder / AliEMCALJetFinderAlgo.cxx
index c176af93502287ec760929f6fd73929aa10e3b59..16a3ec2bc100c1f203790a9512cd686085ee67c2 100644 (file)
@@ -30,7 +30,9 @@
 #include "AliMagF.h"
 ClassImp(AliEMCALJetFinderAlgo)
 
-AliEMCALJetFinderAlgo::AliEMCALJetFinderAlgo()
+AliEMCALJetFinderAlgo::AliEMCALJetFinderAlgo() :
+  fInputPointer(0),fOutputPointer(0),fOutputAllocated(kFALSE),
+  fDebug(0),fPythiaComparison(0)
 {
    fDebug =0;
    fOutputPointer=0;
@@ -38,6 +40,16 @@ AliEMCALJetFinderAlgo::AliEMCALJetFinderAlgo()
    fOutputAllocated=kFALSE;
 }
 
+
+AliEMCALJetFinderAlgo::AliEMCALJetFinderAlgo(const AliEMCALJetFinderAlgo& jfa) 
+  : TTask(jfa.GetName(), jfa.GetTitle()),
+    fInputPointer(jfa.fInputPointer),fOutputPointer(jfa.fOutputPointer),
+    fOutputAllocated(jfa.fOutputAllocated), fDebug(jfa.fDebug),
+    fPythiaComparison(jfa.fPythiaComparison)
+{
+  //copy ctor
+}
+
 AliEMCALJetFinderAlgo::~AliEMCALJetFinderAlgo()
 {
   if (fOutputAllocated)