FairRoot/PandaRoot
PndSdsHitInfo.h
Go to the documentation of this file.
1 
9 #ifndef PNDSSDHITINFO_H
10 #define PNDSSDHITINFO_H 1
11 
12 
13 #include "TObject.h"
14 
15 
16 class PndSdsHitInfo: public TObject
17 {
18 
19  public:
20 
22  PndSdsHitInfo();
23 
24 
26  PndSdsHitInfo(Int_t fileNumber, Int_t eventNumber, Int_t trackID,
27  Int_t pointID, Int_t nMerged, Bool_t isFake);
28 
29 
31  virtual ~PndSdsHitInfo();
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 
61 
68  Int_t fEventNumber;
69 
70 
75  Int_t fTrackID;
76 
77 
82  Int_t fPointID;
83 
84 
90  Int_t fNMerged;
91 
92 
95 
96 
97 
99 
100 };
101 
102 
103 #endif
void SetNMerged(Int_t nMerged)
Definition: PndSdsHitInfo.h:44
Int_t GetNMerged() const
Definition: PndSdsHitInfo.h:39
Int_t GetPointID() const
Definition: PndSdsHitInfo.h:38
ClassDef(PndSdsHitInfo, 1)
Bool_t IsFake() const
Definition: PndSdsHitInfo.h:40
Int_t GetEventNumber() const
Definition: PndSdsHitInfo.h:36
Int_t GetFileNumber() const
Definition: PndSdsHitInfo.h:35
Int_t GetTrackID() const
Definition: PndSdsHitInfo.h:37
Int_t fEventNumber
Definition: PndSdsHitInfo.h:68
virtual ~PndSdsHitInfo()