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; |
f3646355 |
10 | class TTree; |
24e8f6b2 |
11 | |
12 | class AliPMDCalibPedestal : public TObject { |
13 | |
14 | public: |
15 | AliPMDCalibPedestal(); |
16 | AliPMDCalibPedestal(const AliPMDCalibPedestal &ped); |
17 | AliPMDCalibPedestal& operator = (const AliPMDCalibPedestal &source); |
18 | virtual ~AliPMDCalibPedestal(); |
19 | |
20 | Bool_t ProcessEvent(AliRawReader *rawReader); |
9d7353e3 |
21 | void Analyse(TTree *pedtree); |
24e8f6b2 |
22 | |
23 | private: |
24 | |
9d7353e3 |
25 | TH1F *fPedHisto[2][24][48][96]; |
24e8f6b2 |
26 | |
27 | |
9d7353e3 |
28 | ClassDef(AliPMDCalibPedestal,2) |
24e8f6b2 |
29 | }; |
30 | |
31 | |
32 | |
33 | #endif |
34 | |