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 
13 #ifndef PNDSTTTRACKMATCH_H
14 #define PNDSTTTRACKMATCH_H 1
15 
16 #include "TObject.h"
17 
18 class PndSttTrackMatch : public TObject {
19 
20  public:
23 
31  PndSttTrackMatch(Int_t mcTrackID, Int_t nTrue, Int_t nWrong, Int_t nFake, Int_t nTracks);
32 
34  virtual ~PndSttTrackMatch();
35 
37  Int_t GetMCTrackID() { return fMCTrackID; };
38  Int_t GetNofTrueHits() { return fNofTrueHits; };
39  Int_t GetNofWrongHits() { return fNofWrongHits; };
40  Int_t GetNofFakeHits() { return fNofFakeHits; };
41  Int_t GetNofMCTracks() { return fNofMCTracks; };
42 
43  private:
45  Int_t fMCTrackID;
46 
48  Int_t fNofTrueHits;
49 
51  Int_t fNofWrongHits;
52 
54  Int_t fNofFakeHits;
55 
57  Int_t fNofMCTracks;
58 
59  ClassDef(PndSttTrackMatch, 1);
60 };
61 
62 #endif
virtual ~PndSttTrackMatch()