]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSQASPDDataMakerRec.h
Updates in Lc->V0bachelor analysis (Annalisa)
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDDataMakerRec.h
index 53f75fe43c56a3989912f35bbdb860bad334e334..15d26cc698dbadabbe6567a70df22871fe794b6f 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef AliITSQASPDDataMakerRec_H
-#define AliITSQASPDDataMakerRec_H
+#ifndef ALIITSQASPDDATAMAKERREC_H
+#define ALIITSQASPDDATAMAKERREC_H
 /* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
@@ -28,24 +28,29 @@ public:
                           AliITSRawStreamSPDErrorLog *aliITSRawStreamSPDErrorLog = NULL); //ctor
   AliITSQASPDDataMakerRec(const AliITSQASPDDataMakerRec& qadm);
   AliITSQASPDDataMakerRec& operator = (const AliITSQASPDDataMakerRec& qac);
-  virtual void InitRaws();
-  virtual void InitDigits();
-  virtual void InitRecPoints();
-  virtual void MakeRaws(AliRawReader *rawReader);
-  virtual void MakeRecPoints(TTree *clustersTree);
-  virtual void MakeDigits(TClonesArray* /*digits*/)  {return;}
-  virtual void MakeDigits(TTree *clustersTree);
-  virtual void StartOfDetectorCycle();
-  virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray * list);
+  virtual Int_t InitRaws();
+  virtual Int_t InitDigits();
+  virtual Int_t InitRecPoints();
+  virtual Int_t MakeRaws(AliRawReader *rawReader);
+  virtual Int_t MakeRecPoints(TTree *clustersTree);
+  virtual Int_t MakeDigits()  {return 0;}
+  virtual Int_t MakeDigits(TTree *clustersTree);
+  virtual void  StartOfDetectorCycle();
+  virtual void  EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list);
   virtual ~AliITSQASPDDataMakerRec();   // dtor
-  Int_t GetOffset(AliQAv1::TASKINDEX_t task);
-  Int_t GetTaskHisto(AliQAv1::TASKINDEX_t task);
+  Int_t GetOffset(AliQAv1::TASKINDEX_t task,Int_t specie=0) const;
+  void  SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset, Int_t specie = 0);
+  Int_t GetTaskHisto(AliQAv1::TASKINDEX_t task) const;
+  virtual void ResetDetector(AliQAv1::TASKINDEX_t){;};
+
+  enum {kAmoreFoOffset=10, kAmoreErrorsOffset=21};
 
 private: 
 
-  static const Int_t fgknSPDmodules = 240;   //number of SPD modules
-  static const Int_t fgkLADDonLay1 = 80;     //number of modules on layer 1
-  static const Int_t fgkLADDonLay2 = 160;    //number of modules on layer 2
+  static const Short_t fgknSPDmodules = 240;    //number of SPD modules
+  static const Short_t fgkLADDonLay1  = 80;     //number of modules on layer 1
+  static const Short_t fgkLADDonLay2  = 160;    //number of modules on layer 2
+  static const Short_t fgkSPDchips    = 1200;   //number of chips
 
   AliITSQADataMakerRec *fAliITSQADataMakerRec;//pointer to the main ctor
   Bool_t  fkOnline;                           //online (1) or offline (0) use
@@ -53,13 +58,15 @@ private:
   Int_t   fSPDhRawsTask;                      // number of booked SPD histograms for the Raws Task
   Int_t   fSPDhDigitsTask;                    // number of booked SPD histograms for the RecPoints Task
   Int_t   fSPDhRecPointsTask;                 // number of booked SPD histograms for the RecPoints Task
-  Int_t   fGenRawsOffset;                     // QAchecking Raws offset
-  Int_t   fGenDigitsOffset;                   // QAchecking RecPoints offset
-  Int_t   fGenRecPointsOffset;                // QAchecking RecPoints offset
+  Int_t   *fGenRawsOffset;                     // QAchecking Raws offset
+  Int_t   *fGenDigitsOffset;                   // QAchecking Digits offset
+  Int_t   *fGenRecPointsOffset;                // QAchecking RecPoints offset
   AliITSRawStreamSPDErrorLog *fAdvLogger;  // pointer to special error logger object
 
-  ClassDef(AliITSQASPDDataMakerRec,4)      // description 
+  ClassDef(AliITSQASPDDataMakerRec,6)      // description 
 
 };
 
 #endif
+
+