]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEERBase/AliTPCdEdxInfo.h
In order to use the new TPC dEdx information within the common pid classes the new...
[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   //
12   void     GetTPCSignalRegionInfo(Double32_t signal[4], Char_t ncl[3], Char_t nrows[3]) const;
13   void     SetTPCSignalRegionInfo(Double32_t signal[4], Char_t ncl[3], Char_t nrows[3]);
14   
15 private:
16
17   Double32_t  fTPCsignalRegion[4]; // TPC dEdx signal in 4 different regions - 0 - IROC, 1- OROC medium, 2 - OROC long, 3- OROC all, (default truncation used)  
18   Char_t      fTPCsignalNRegion[3]; // number of clusters above threshold used in the dEdx calculation
19   Char_t      fTPCsignalNRowRegion[3]; // number of crosed rows used in the dEdx calculation - signal below threshold included
20
21   
22   ClassDef(AliTPCdEdxInfo,1)
23 };
24
25 #endif