]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliQADataMakerRec.h
1.The QA data created on demand according to the event species at filling time. 2...
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerRec.h
index eeed97ce7a2ffdb1d84bb37e05aaf811e06e36e2..fd67aaa67b3f966a3942893200f0b604e4aa6a70 100644 (file)
@@ -31,17 +31,18 @@ public:
        virtual ~AliQADataMakerRec() ; // dtor
   
        virtual Int_t Add2DigitsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE)    
-    { return Add2List(hist, index, fDigitsQAList, expert, image) ; }
-       virtual Int_t Add2ESDsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE)                      
+  { return Add2List(hist, index, fDigitsQAList, expert, image) ; }
+  virtual Int_t Add2ESDsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE)                      
     { return Add2List(hist, index, fESDsQAList, expert, image) ; }
-       virtual Int_t Add2HitsList(TH1 * /*hist*/, const Int_t /*index*/, const Bool_t /*expert = kFALSE*/, const Bool_t /*image = kFALSE*/)      
+  virtual Int_t Add2HitsList(TH1 * /*hist*/, const Int_t /*index*/, const Bool_t /*expert = kFALSE*/, const Bool_t /*image = kFALSE*/)      
     { return -1 ; }  
-       virtual Int_t Add2RecPointsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE)                 
+  virtual Int_t Add2RecPointsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE)                 
     { return Add2List(hist, index, fRecPointsQAList, expert, image) ; }
-       virtual Int_t Add2RawsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE, const Bool_t saveForCorr = kFALSE)  { 
-    return Add2List(hist, index, fRawsQAList, expert, image, saveForCorr) ; }
-       virtual Int_t Add2SDigitsList(TH1 * /*hist*/, const Int_t /*index*/, const Bool_t /*expert = kFALSE*/, const Bool_t /*image = kFALSE*/)   { return -1 ; } 
-       virtual void        Exec(AliQAv1::TASKINDEX_t task, TObject * data) ;
+  virtual Int_t Add2RawsList(TH1 * hist, const Int_t index, const Bool_t expert = kFALSE, const Bool_t image = kFALSE, const Bool_t saveForCorr = kFALSE)  
+  { return Add2List(hist, index, fRawsQAList, expert, image, saveForCorr) ; }
+  virtual Int_t Add2SDigitsList(TH1 * /*hist*/, const Int_t /*index*/, const Bool_t /*expert = kFALSE*/, const Bool_t /*image = kFALSE*/)   { return -1 ; } 
+       
+  virtual void        Exec(AliQAv1::TASKINDEX_t task, TObject * data) ;
        virtual void        EndOfCycle() ;
        virtual void        EndOfCycle(AliQAv1::TASKINDEX_t task) ;
        virtual void        EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** ) {AliInfo("To be implemented by detectors");} 
@@ -83,14 +84,14 @@ protected:
        virtual void   MakeSDigits(TTree * )               {AliWarning("Call not valid") ; }    
        virtual void   StartOfDetectorCycle()              {AliInfo("To be implemented by detectors");} 
 
-       TObjArray * *               fDigitsQAList ;    //! list of the digits QA data objects
-       TObjArray * *               fESDsQAList ;      //! list of the ESDs QA data objects
-       TObjArray * *               fRawsQAList ;      //! list of the raws QA data objects
-       TObjArray * *               fRecPointsQAList ; //! list of the RecPoints QA data objects
-  TNtupleD  * *               fCorrNt ;          //! This is used by Corr only to hold its Ntuple. 
-  const AliDetectorRecoParam *fRecoParam;        //! const pointer to the reco parameters to be used in the reco QA
+       TObjArray * *               fDigitsQAList ;     //! list of the digits QA data objects
+       TObjArray * *               fESDsQAList ;       //! list of the ESDs QA data objects
+       TObjArray * *               fRawsQAList ;       //! list of the raws QA data objects
+       TObjArray * *               fRecPointsQAList ;  //! list of the RecPoints QA data objects
+  TNtupleD  **                 fCorrNt ;          //! This is used by Corr only to hold its Ntuple. 
+  const AliDetectorRecoParam *fRecoParam;         //! const pointer to the reco parameters to be used in the reco QA
   
- ClassDef(AliQADataMakerRec,3)  // description 
+ ClassDef(AliQADataMakerRec,4)  // description 
 
 };