]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEERBase/AliTPCdEdxInfo.h
1) coverity fix
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliTPCdEdxInfo.h
CommitLineData
40b4e5ea 1#ifndef AliTPCdEdxInfo_H
2#define AliTPCdEdxInfo_H
3
4#include <TObject.h>
5
6class AliTPCdEdxInfo : public TObject
7{
8public:
9 AliTPCdEdxInfo();
10 AliTPCdEdxInfo(const AliTPCdEdxInfo& source);
08c24516 11 AliTPCdEdxInfo& operator=(const AliTPCdEdxInfo& source);
40b4e5ea 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
16private:
17
c997f0f9 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)
40b4e5ea 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
c997f0f9 23 ClassDef(AliTPCdEdxInfo,2)
40b4e5ea 24};
25
26#endif