FairRoot/PandaRoot
PndSttTrackMatch.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndSttTrackMatch header file -----
3 // ----- Created 28/03/06 by V. Friese -----
4 // -------------------------------------------------------------------------
5 
6 
15 #ifndef PNDSTTTRACKMATCH_H
16 #define PNDSTTTRACKMATCH_H 1
17 
18 
19 #include "TObject.h"
20 
21 class PndSttTrackMatch : public TObject
22 {
23 
24  public:
25 
28 
29 
37  PndSttTrackMatch(Int_t mcTrackID, Int_t nTrue, Int_t nWrong,
38  Int_t nFake, Int_t nTracks);
39 
40 
42  virtual ~PndSttTrackMatch();
43 
44 
46  Int_t GetMCTrackID() { return fMCTrackID; };
47  Int_t GetNofTrueHits() { return fNofTrueHits; };
48  Int_t GetNofWrongHits() { return fNofWrongHits; };
49  Int_t GetNofFakeHits() { return fNofFakeHits; };
50  Int_t GetNofMCTracks() { return fNofMCTracks; };
51 
52 
53  private:
54 
56  Int_t fMCTrackID;
57 
59  Int_t fNofTrueHits;
60 
63 
65  Int_t fNofFakeHits;
66 
68  Int_t fNofMCTracks;
69 
70 
72 
73 };
74 
75 
76 #endif
77 
virtual ~PndSttTrackMatch()
ClassDef(PndSttTrackMatch, 1)