]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEERBase/AliTPCdEdxInfo.h
Changes for #94112: Standard AOD size (Jens)
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliTPCdEdxInfo.h
1 #ifndef AliTPCdEdxInfo_H
2 #define AliTPCdEdxInfo_H
3
4 #include <TObject.h>
5
6 class AliTPCdEdxInfo : public TObject 
7 {
8 public:
9   AliTPCdEdxInfo();
10   AliTPCdEdxInfo(const AliTPCdEdxInfo& source);
11   AliTPCdEdxInfo& operator=(const AliTPCdEdxInfo& source);
12   //
13   void     GetTPCSignalRegionInfo(Double32_t signal[4], Char_t ncl[3], Char_t nrows[3]) const;
14   void     SetTPCSignalRegionInfo(Double32_t signal[4], Char_t ncl[3], Char_t nrows[3]);
15   
16 private:
17
18   Double32_t  fTPCsignalRegion[4]; //[0.,0.,10] TPC dEdx signal in 4 different regions - 0 - IROC, 1- OROC medium, 2 - OROC long, 3- OROC all, (default truncation used)  
19   Char_t      fTPCsignalNRegion[3]; // number of clusters above threshold used in the dEdx calculation
20   Char_t      fTPCsignalNRowRegion[3]; // number of crosed rows used in the dEdx calculation - signal below threshold included
21
22   
23   ClassDef(AliTPCdEdxInfo,2)
24 };
25
26 #endif