| 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 | class TTree; |
| 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); |
| 21 | void Analyse(TTree *pedtree); |
| 22 | |
| 23 | private: |
| 24 | |
| 25 | TH1F *fPedHisto[2][24][48][96]; |
| 26 | |
| 27 | |
| 28 | ClassDef(AliPMDCalibPedestal,2) |
| 29 | }; |
| 30 | |
| 31 | |
| 32 | |
| 33 | #endif |
| 34 | |