24e8f6b2 |
1 | #ifndef ALIPMDCALIBPEDESTAL_H |
2 | #define ALIPMDCALIBPEDESTAL_H |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | #include "TObject.h" |
7 | |
8 | class TH1F; |
9 | class AliRawReader; |
10 | |
11 | class AliPMDCalibPedestal : public TObject { |
12 | |
13 | public: |
14 | AliPMDCalibPedestal(); |
15 | AliPMDCalibPedestal(const AliPMDCalibPedestal &ped); |
16 | AliPMDCalibPedestal& operator = (const AliPMDCalibPedestal &source); |
17 | virtual ~AliPMDCalibPedestal(); |
18 | |
19 | Bool_t ProcessEvent(AliRawReader *rawReader); |
20 | void Analyse(); |
21 | |
22 | private: |
23 | |
24 | TH1F *fPedHisto[2][24][96][96]; |
25 | |
26 | |
27 | ClassDef(AliPMDCalibPedestal,1) |
28 | }; |
29 | |
30 | |
31 | |
32 | #endif |
33 | |