]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCClusters.h
allow NULL pointer arguments in SetDataType
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCClusters.h
CommitLineData
a1dbf058 1#ifndef ALIHLTTPCCLUSTERS_H
2#define ALIHLTTPCCLUSTERS_H
01f43166 3
4#include "AliHLTLogging.h"
5
6class AliHLTTPCClusters : public AliHLTLogging {
7
8 public:
9 AliHLTTPCClusters();
10 AliHLTTPCClusters(const AliHLTTPCClusters& src);
a1dbf058 11 AliHLTTPCClusters& operator=(const AliHLTTPCClusters& src);
01f43166 12
13 UInt_t fTotalCharge; //tot charge of cluster
14 UInt_t fPad; //pad value
15 UInt_t fTime; //time value
16 ULong64_t fPad2; //for error in XY direction
17 ULong64_t fTime2; //for error in Z direction
18 UInt_t fMean; //mean in time
19 UInt_t fFlags; //different flags
20 UInt_t fChargeFalling; //for deconvolution
21 UInt_t fLastCharge; //for deconvolution
22 UInt_t fLastMergedPad; //dont merge twice per pad
a1dbf058 23 UInt_t fRowNumber; //row number
24 Int_t fFirstPad; //first pad
25 UInt_t fLastPad; //last pad (aha!!!)
01f43166 26 ClassDef(AliHLTTPCClusters,0) //Fast cluster finder
27 };
a1dbf058 28#endif //ALIHLTTPCCLUSTERS_H