]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDCalibrator.h
clusterizer updates for new ESD and now get geometry in local variable
[u/mrichter/AliRoot.git] / PMD / AliPMDCalibrator.h
CommitLineData
06810de6 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
6class TTask;
7class TObjArray;
8class TH1F;
9
10class AliPMDCalibData;
11
12class 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
28ClassDef(AliPMDCalibrator,1) // description
29};
30#endif // AliPMDCALIBRATOR_H