]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
last one
authorsnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 27 May 2008 12:55:07 +0000 (12:55 +0000)
committersnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 27 May 2008 12:55:07 +0000 (12:55 +0000)
PWG2/FLOW/AliAnalysisTaskLYZEventPlane.cxx
PWG2/FLOW/AliFlowAnalysisWithLYZEventPlane.cxx
PWG2/FLOW/AliFlowAnalysisWithLYZEventPlane.h

index 608728942ca5ca514ef5ecdcfff7288867fd7fb6..1e44199fb59fe778123b750eedb51a830b3e3f9e 100644 (file)
@@ -46,14 +46,14 @@ ClassImp(AliAnalysisTaskLYZEventPlane)
 //________________________________________________________________________
 AliAnalysisTaskLYZEventPlane::AliAnalysisTaskLYZEventPlane(const char *name) : 
   AliAnalysisTask(name, ""), 
-  fESD(0), 
-  fAOD(0),
+  fESD(NULL), 
+  fAOD(NULL),
   fAnalysisType("ESD"), 
-  fLyzEp(0),
-  fLyz(0),
-  fEventMaker(0),
-  fFirstRunFile(0),
-  fSecondRunFile(0)
+  fLyzEp(NULL),
+  fLyz(NULL),
+  fEventMaker(NULL),
+  fFirstRunFile(NULL),
+  fSecondRunFile(NULL)
 {
   // Constructor
   cout<<"AliAnalysisTaskLYZEventPlane::AliAnalysisTaskLYZEventPlane(const char *name)"<<endl;
index d9ffac23be728507f281cf7811444be394f1d95b..8770bb07b5df8f7fd991f976e40e261bab958e75 100644 (file)
@@ -84,8 +84,8 @@ ClassImp(AliFlowAnalysisWithLYZEventPlane)
   fQsum(NULL),
   fQ2sum(0),
   fQtheta(0),
-  fTrack(NULL),
-  fLYZEP(NULL)
+  fTrack(NULL)
+//  fLYZEP(NULL)
 {
 
   // Constructor.
@@ -93,7 +93,7 @@ ClassImp(AliFlowAnalysisWithLYZEventPlane)
   //  fQsum.Set(0.,0.);        // flow vector sum
   fQ = new AliFlowVector();           // flow vector
   fQsum = new TVector2();        // flow vector sum
-  fLYZEP = new AliFlowLYZEventPlane();
+  //  fLYZEP = new AliFlowLYZEventPlane();
 }
 
  
@@ -106,7 +106,7 @@ ClassImp(AliFlowAnalysisWithLYZEventPlane)
    //destructor
    delete fQ;
    delete fQsum;
-   delete fLYZEP;
+   //   delete fLYZEP;
  }
  
 
@@ -190,7 +190,7 @@ void AliFlowAnalysisWithLYZEventPlane::Init() {
 //-----------------------------------------------------------------------
  
 void AliFlowAnalysisWithLYZEventPlane::Make(AliFlowEventSimple* anEvent, AliFlowLYZEventPlane* fLYZEP) {
-  //void AliFlowAnalysisWithLYZEventPlane::Make(AliFlowEventSimple* anEvent) {
+//void AliFlowAnalysisWithLYZEventPlane::Make(AliFlowEventSimple* anEvent) {
 
   //Get the event plane and weight for each event
   if (anEvent) {
index 8f180dfe45dcee3867749f31cb0dccb1f668e794..331a031c360d79d7b9d9dd2ad4616ee927f8f5d4 100644 (file)
@@ -106,7 +106,7 @@ class AliFlowAnalysisWithLYZEventPlane {
    
   //  AliFlowEventSimple*  fEvent ;               //!
   AliFlowTrackSimple*  fTrack ;               //!
-  AliFlowLYZEventPlane* fLYZEP ;              //!
+  //  AliFlowLYZEventPlane* fLYZEP ;              //!
 
   ClassDef(AliFlowAnalysisWithLYZEventPlane, 0);          // lyz analysis 
 };