]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDCalibrator.h
Bugfix
[u/mrichter/AliRoot.git] / PMD / AliPMDCalibrator.h
1 #ifndef ALIPMDCALIBRATOR_H
2 #define ALIPMDCALIBRATOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 class TTask;
7 class TObjArray;
8 class TH1F;  
9
10 class AliPMDCalibData;
11
12 class AliPMDCalibrator
13 {
14  public:
15   AliPMDCalibrator() ;              // ctor
16   virtual ~AliPMDCalibrator() ;     // dtor
17   virtual void Exec();
18   void CalculateIsoCell();          //calculates gains
19   void Init();
20   Bool_t Store();
21   
22  private:
23   Float_t fGainFact[2][24][96][96];
24   TH1F *fHsmIso[2][24];             //histos of isolated cell modulewise
25   TH1F *fHadcIso[2][24][96][96];    // histos of isolated cells cellwise
26   AliPMDCalibData *fCalibData;
27
28 ClassDef(AliPMDCalibrator,1)        // description 
29 };
30 #endif // AliPMDCALIBRATOR_H