FairRoot/PandaRoot
PndSttTrackMatch.cxx
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndSttTrackMatch source file -----
3 // ----- Created 30/03/06 by R. Castelijns -----
4 // -------------------------------------------------------------------------
5 
6 
7 #include "PndSttTrackMatch.h"
8 
9 
10 
11 // ----- Default constructor -------------------------------------------
13  fMCTrackID = -1;
14  fNofTrueHits = 0;
15  fNofWrongHits = 0;
16  fNofFakeHits = 0;
17  fNofMCTracks = 0;
18 }
19 // -------------------------------------------------------------------------
20 
21 
22 
23 // ----- Standard constructor ------------------------------------------
24 PndSttTrackMatch::PndSttTrackMatch(Int_t mcTrackID, Int_t nTrue,
25  Int_t nWrong, Int_t nFake,
26  Int_t nTracks) {
27  fMCTrackID = mcTrackID;
28  fNofTrueHits = nTrue;
29  fNofWrongHits = nWrong;
30  fNofFakeHits = nFake;
31  fNofMCTracks = nTracks;
32 }
33 // -------------------------------------------------------------------------
34 
35 
36 
37 // ----- Destructor ----------------------------------------------------
39 // -------------------------------------------------------------------------
40 
41 
virtual ~PndSttTrackMatch()
ClassImp(PndAnaContFact)