FairRoot/PandaRoot
PndFtsHitInfo.h
Go to the documentation of this file.
1 
9 #ifndef PNDFTSHITINFO_H
10 #define PNDFTSHITINFO_H 1
11 
12 
13 #include "TObject.h"
14 
15 
16 class PndFtsHitInfo: public TObject
17 {
18 
19  public:
20 
22  PndFtsHitInfo();
23 
24 
26  PndFtsHitInfo(Int_t fileNumber, Int_t eventNumber, Int_t trackID,
27  Int_t pointID, Int_t nMerged, Bool_t isFake);
28 
29 
31  virtual ~PndFtsHitInfo();
32 
33 
35  Int_t GetFileNumber() const { return fFileNumber; };
36  Int_t GetEventNumber() const { return fEventNumber; };
37  Int_t GetTrackID() const { return fTrackID; };
38  Int_t GetPointID() const { return fPointID; };
39  Int_t GetNMerged() const { return fNMerged; };
40  Bool_t IsFake() const { return fIsFake; };
41 
42 
44  void SetNMerged(Int_t nMerged) { fNMerged = nMerged; };
45 
46 
48  void Clear();
49 
50 
51  private:
52 
59  Int_t fFileNumber;
60 
67  Int_t fEventNumber;
68 
73  Int_t fTrackID;
74 
79  Int_t fPointID;
80 
86  Int_t fNMerged;
87 
90 
92 
93 };
94 
95 
96 #endif
Bool_t IsFake() const
Definition: PndFtsHitInfo.h:40
Int_t GetPointID() const
Definition: PndFtsHitInfo.h:38
virtual ~PndFtsHitInfo()
ClassDef(PndFtsHitInfo, 1)
Int_t GetNMerged() const
Definition: PndFtsHitInfo.h:39
void SetNMerged(Int_t nMerged)
Definition: PndFtsHitInfo.h:44
Int_t GetEventNumber() const
Definition: PndFtsHitInfo.h:36
Int_t GetFileNumber() const
Definition: PndFtsHitInfo.h:35
Int_t fEventNumber
Definition: PndFtsHitInfo.h:67
Int_t GetTrackID() const
Definition: PndFtsHitInfo.h:37