]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDCalibGain.h
Adding first version of trigger LUT handling to Shuttle
[u/mrichter/AliRoot.git] / PMD / AliPMDCalibGain.h
CommitLineData
4fc06b3a 1#ifndef ALIPMDCALIBGAIN_H
2#define ALIPMDCALIBGAIN_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
8class TH1F;
9class AliRawReader;
10
11class AliPMDCalibGain : public TObject
12{
13 public:
14 AliPMDCalibGain() ; // ctor
15 AliPMDCalibGain(const AliPMDCalibGain &pmdcalibgain); // copy constructor
16 AliPMDCalibGain &operator=(const AliPMDCalibGain &pmdcalibgain); // assignment op
17
18 virtual ~AliPMDCalibGain() ; // dtor
19
20 Bool_t ProcessEvent(AliRawReader *rawReader); //Looks for iso cells
21
22 void Analyse(TTree *gaintree);
23
24 private:
25
26 enum
27 {
28 kDet = 2, // Number of Planes
29 kMaxSMN = 24, // Number of Modules
30 kMaxRow = 48, // Number of Rows
31 kMaxCol = 96 // Number of Columns
32 };
33
34 TH1F *fHsmIso[kDet][kMaxSMN]; //histos of isolated cells modulewise
35 TH1F *fHadcIso[kDet][kMaxSMN][kMaxRow][kMaxCol]; // histos of iso cells cellwise
36
37
38ClassDef(AliPMDCalibGain,1) // description
39};
40#endif // ALIPMDCALIBGAIN_H