]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/ESD/AliTPCdEdxInfo.h
Changes for #88113 Request to add new TPC-PID information to AliESDtrack and a new...
[u/mrichter/AliRoot.git] / STEER / ESD / 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);
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
15private:
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