]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSQASPDDataMakerRec.h
Fixing compilation warnings
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDDataMakerRec.h
index fc2ddf2d7d982260efce6880bf1df923680b61f0..3497e1e3c73a41c81c69ad980c0b2475e49df7da 100644 (file)
@@ -38,15 +38,19 @@ public:
   virtual void  StartOfDetectorCycle();
   virtual void  EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray * list);
   virtual ~AliITSQASPDDataMakerRec();   // dtor
-  Int_t GetOffset(AliQAv1::TASKINDEX_t task);
-  void  SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset);
+  Int_t GetOffset(AliQAv1::TASKINDEX_t task,Int_t specie=0);
+  void  SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset, Int_t specie = 0);
   Int_t GetTaskHisto(AliQAv1::TASKINDEX_t task);
+  virtual void ResetDetector(AliQAv1::TASKINDEX_t){;};
+
+  enum {kAmoreFoOffset = 8, 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
@@ -54,12 +58,12 @@ 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 Digits 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 
 
 };