BOSS 7.0.3
BESIII Offline Software System
Loading...
Searching...
No Matches
RecTrackList Class Reference

#include <RecTrackList.h>

+ Inheritance diagram for RecTrackList:

Public Member Functions

virtual const CLID & clID () const
 
 RecTrackList ()
 
 ~RecTrackList ()
 
 RecTrackList (const RecTrackList &)
 
bool IsMdcTrkValid ()
 
bool IsMdcKalTrkValid ()
 
bool IsDedxValid ()
 
bool IsExtTrkValid ()
 
bool IsTofTrkValid ()
 
bool IsEmcTrkValid ()
 
bool IsMucTrkValid ()
 
int GetTrkId ()
 
RecMdcTrackMdcTrk ()
 
RecMdcKalTrackMdcKalTrk ()
 
RecMdcDedxDedxTrk ()
 
RecExtTrackExtTrk ()
 
RecTofTrackTofTrk ()
 
RecEmcShowerEmcTrk ()
 
RecMucTrackMucTrk ()
 
void setTrackID (const int trkID)
 
void setMdcTrk (RecMdcTrack *trk)
 
void setMdcKalTrk (RecMdcKalTrack *trk)
 
void setDedxTrk (RecMdcDedx *trk)
 
void setExtTrk (RecExtTrack *trk)
 
void setTofTrk (RecTofTrack *trk)
 
void setEmcTrk (RecEmcShower *trk)
 
void setMucTrk (RecMucTrack *trk)
 
int MdcTrkIdx ()
 
int MdcKalTrkIdx ()
 
int DedxTrkIdx ()
 
int ExtTrkIdx ()
 
int TofTrkIdx ()
 
int EmcTrkIdx ()
 
int MucTrkIdx ()
 
void setMdcTrkIdx (int idx)
 
void setMdcKalTrkIdx (int idx)
 
void setDedxTrkIdx (int idx)
 
void setExtTrkIdx (int idx)
 
void setTofTrkIdx (int idx)
 
void setEmcTrkIdx (int idx)
 
void setMucTrkIdx (int idx)
 
RecTrackListoperator= (const RecTrackList &)
 
virtual const CLID & clID () const
 
 RecTrackList ()
 
 ~RecTrackList ()
 
 RecTrackList (const RecTrackList &)
 
bool IsMdcTrkValid ()
 
bool IsMdcKalTrkValid ()
 
bool IsDedxValid ()
 
bool IsExtTrkValid ()
 
bool IsTofTrkValid ()
 
bool IsEmcTrkValid ()
 
bool IsMucTrkValid ()
 
int GetTrkId ()
 
RecMdcTrackMdcTrk ()
 
RecMdcKalTrackMdcKalTrk ()
 
RecMdcDedxDedxTrk ()
 
RecExtTrackExtTrk ()
 
RecTofTrackTofTrk ()
 
RecEmcShowerEmcTrk ()
 
RecMucTrackMucTrk ()
 
void setTrackID (const int trkID)
 
void setMdcTrk (RecMdcTrack *trk)
 
void setMdcKalTrk (RecMdcKalTrack *trk)
 
void setDedxTrk (RecMdcDedx *trk)
 
void setExtTrk (RecExtTrack *trk)
 
void setTofTrk (RecTofTrack *trk)
 
void setEmcTrk (RecEmcShower *trk)
 
void setMucTrk (RecMucTrack *trk)
 
int MdcTrkIdx ()
 
int MdcKalTrkIdx ()
 
int DedxTrkIdx ()
 
int ExtTrkIdx ()
 
int TofTrkIdx ()
 
int EmcTrkIdx ()
 
int MucTrkIdx ()
 
void setMdcTrkIdx (int idx)
 
void setMdcKalTrkIdx (int idx)
 
void setDedxTrkIdx (int idx)
 
void setExtTrkIdx (int idx)
 
void setTofTrkIdx (int idx)
 
void setEmcTrkIdx (int idx)
 
void setMucTrkIdx (int idx)
 
RecTrackListoperator= (const RecTrackList &)
 

Static Public Member Functions

static const CLID & classID ()
 
static const CLID & classID ()
 

Detailed Description

Constructor & Destructor Documentation

◆ RecTrackList() [1/4]

RecTrackList::RecTrackList ( )

Definition at line 3 of file RecTrackList.cxx.

4{
5 myTrkId = -1;
6 myMdcTrk = 0;
7 myKalTrk = 0;
8 myMdcDedx = 0;
9 myExtTrk = 0;
10 myTofTrk = 0;
11 myRecEmcShower = 0;
12 myMucTrk = 0;
13 myMdcTrkIdx = -1;
14 myKalTrkIdx = -1;
15 myMdcDedxIdx = -1;
16 myExtTrkIdx = -1;
17 myTofTrkIdx = -1;
18 myRecEmcShowerIdx = -1;
19 myMucTrkIdx = -1;
20}

◆ ~RecTrackList() [1/2]

RecTrackList::~RecTrackList ( )
inline

◆ RecTrackList() [2/4]

RecTrackList::RecTrackList ( const RecTrackList trk)

Definition at line 22 of file RecTrackList.cxx.

23{
24 myTrkId = trk.myTrkId;
25 myMdcTrk = trk.myMdcTrk;
26 myKalTrk = trk.myKalTrk;
27 myMdcDedx = trk.myMdcDedx;
28 myExtTrk = trk.myExtTrk;
29 myTofTrk = trk.myTofTrk;
30 myRecEmcShower = trk.myRecEmcShower;
31 myMucTrk = trk.myMucTrk;
32 myMdcTrkIdx = trk.myMdcTrkIdx;
33 myKalTrkIdx = trk.myKalTrkIdx;
34 myMdcDedxIdx = trk.myMdcDedxIdx;
35 myExtTrkIdx = trk.myExtTrkIdx;
36 myTofTrkIdx = trk.myTofTrkIdx;
37 myRecEmcShowerIdx = trk.myRecEmcShowerIdx;
38 myMucTrkIdx = trk.myMucTrkIdx;
39}

◆ RecTrackList() [3/4]

RecTrackList::RecTrackList ( )

◆ ~RecTrackList() [2/2]

RecTrackList::~RecTrackList ( )
inline

◆ RecTrackList() [4/4]

RecTrackList::RecTrackList ( const RecTrackList )

Member Function Documentation

◆ classID() [1/2]

static const CLID & RecTrackList::classID ( )
inlinestatic

Definition at line 24 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

24{ return CLID_RecTrackList;}
const CLID & CLID_RecTrackList

Referenced by clID().

◆ classID() [2/2]

static const CLID & RecTrackList::classID ( )
inlinestatic

◆ clID() [1/2]

virtual const CLID & RecTrackList::clID ( ) const
inlinevirtual

◆ clID() [2/2]

virtual const CLID & RecTrackList::clID ( ) const
inlinevirtual

◆ DedxTrk() [1/2]

RecMdcDedx * RecTrackList::DedxTrk ( )
inline

Definition at line 42 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

42{return myMdcDedx;}

◆ DedxTrk() [2/2]

RecMdcDedx * RecTrackList::DedxTrk ( )
inline

Definition at line 42 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

42{return myMdcDedx;}

◆ DedxTrkIdx() [1/2]

int RecTrackList::DedxTrkIdx ( )
inline

Definition at line 59 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

59{ return myMdcDedxIdx;}

◆ DedxTrkIdx() [2/2]

int RecTrackList::DedxTrkIdx ( )
inline

Definition at line 59 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

59{ return myMdcDedxIdx;}

◆ EmcTrk() [1/2]

RecEmcShower * RecTrackList::EmcTrk ( )
inline

Definition at line 45 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

45{return myRecEmcShower;}

◆ EmcTrk() [2/2]

RecEmcShower * RecTrackList::EmcTrk ( )
inline

Definition at line 45 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

45{return myRecEmcShower;}

◆ EmcTrkIdx() [1/2]

int RecTrackList::EmcTrkIdx ( )
inline

Definition at line 62 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

62{ return myRecEmcShowerIdx;}

◆ EmcTrkIdx() [2/2]

int RecTrackList::EmcTrkIdx ( )
inline

Definition at line 62 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

62{ return myRecEmcShowerIdx;}

◆ ExtTrk() [1/2]

RecExtTrack * RecTrackList::ExtTrk ( )
inline

Definition at line 43 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

43{return myExtTrk;}

◆ ExtTrk() [2/2]

RecExtTrack * RecTrackList::ExtTrk ( )
inline

Definition at line 43 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

43{return myExtTrk;}

◆ ExtTrkIdx() [1/2]

int RecTrackList::ExtTrkIdx ( )
inline

Definition at line 60 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

60{ return myExtTrkIdx;}

◆ ExtTrkIdx() [2/2]

int RecTrackList::ExtTrkIdx ( )
inline

Definition at line 60 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

60{ return myExtTrkIdx;}

◆ GetTrkId() [1/2]

int RecTrackList::GetTrkId ( )
inline

Definition at line 39 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

39{return myTrkId;}

◆ GetTrkId() [2/2]

int RecTrackList::GetTrkId ( )
inline

Definition at line 39 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

39{return myTrkId;}

◆ IsDedxValid() [1/2]

bool RecTrackList::IsDedxValid ( )
inline

Definition at line 33 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

33{return (myMdcDedx != 0);}

◆ IsDedxValid() [2/2]

bool RecTrackList::IsDedxValid ( )
inline

Definition at line 33 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

33{return (myMdcDedx != 0);}

◆ IsEmcTrkValid() [1/2]

bool RecTrackList::IsEmcTrkValid ( )
inline

Definition at line 36 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

36{return (myRecEmcShower != 0);}

◆ IsEmcTrkValid() [2/2]

bool RecTrackList::IsEmcTrkValid ( )
inline

Definition at line 36 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

36{return (myRecEmcShower != 0);}

◆ IsExtTrkValid() [1/2]

bool RecTrackList::IsExtTrkValid ( )
inline

Definition at line 34 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

34{return (myExtTrk != 0);}

◆ IsExtTrkValid() [2/2]

bool RecTrackList::IsExtTrkValid ( )
inline

Definition at line 34 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

34{return (myExtTrk != 0);}

◆ IsMdcKalTrkValid() [1/2]

bool RecTrackList::IsMdcKalTrkValid ( )
inline

Definition at line 32 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

32{return (myKalTrk != 0);}

◆ IsMdcKalTrkValid() [2/2]

bool RecTrackList::IsMdcKalTrkValid ( )
inline

Definition at line 32 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

32{return (myKalTrk != 0);}

◆ IsMdcTrkValid() [1/2]

bool RecTrackList::IsMdcTrkValid ( )
inline

Definition at line 31 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

31{return (myMdcTrk != 0);}

◆ IsMdcTrkValid() [2/2]

bool RecTrackList::IsMdcTrkValid ( )
inline

Definition at line 31 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

31{return (myMdcTrk != 0);}

◆ IsMucTrkValid() [1/2]

bool RecTrackList::IsMucTrkValid ( )
inline

Definition at line 37 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

37{return (myMucTrk != 0);}

◆ IsMucTrkValid() [2/2]

bool RecTrackList::IsMucTrkValid ( )
inline

Definition at line 37 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

37{return (myMucTrk != 0);}

◆ IsTofTrkValid() [1/2]

bool RecTrackList::IsTofTrkValid ( )
inline

Definition at line 35 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

35{return (myTofTrk != 0);}

◆ IsTofTrkValid() [2/2]

bool RecTrackList::IsTofTrkValid ( )
inline

Definition at line 35 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

35{return (myTofTrk != 0);}

◆ MdcKalTrk() [1/2]

RecMdcKalTrack * RecTrackList::MdcKalTrk ( )
inline

Definition at line 41 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

41{return myKalTrk;}

◆ MdcKalTrk() [2/2]

RecMdcKalTrack * RecTrackList::MdcKalTrk ( )
inline

Definition at line 41 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

41{return myKalTrk;}

◆ MdcKalTrkIdx() [1/2]

int RecTrackList::MdcKalTrkIdx ( )
inline

Definition at line 58 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

58{ return myKalTrkIdx;}

◆ MdcKalTrkIdx() [2/2]

int RecTrackList::MdcKalTrkIdx ( )
inline

Definition at line 58 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

58{ return myKalTrkIdx;}

◆ MdcTrk() [1/2]

RecMdcTrack * RecTrackList::MdcTrk ( )
inline

Definition at line 40 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

40{return myMdcTrk;}

◆ MdcTrk() [2/2]

RecMdcTrack * RecTrackList::MdcTrk ( )
inline

Definition at line 40 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

40{return myMdcTrk;}

◆ MdcTrkIdx() [1/2]

int RecTrackList::MdcTrkIdx ( )
inline

Definition at line 57 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

57{ return myMdcTrkIdx;}

◆ MdcTrkIdx() [2/2]

int RecTrackList::MdcTrkIdx ( )
inline

Definition at line 57 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

57{ return myMdcTrkIdx;}

◆ MucTrk() [1/2]

RecMucTrack * RecTrackList::MucTrk ( )
inline

Definition at line 46 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

46{return myMucTrk;}

◆ MucTrk() [2/2]

RecMucTrack * RecTrackList::MucTrk ( )
inline

Definition at line 46 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

46{return myMucTrk;}

◆ MucTrkIdx() [1/2]

int RecTrackList::MucTrkIdx ( )
inline

Definition at line 63 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

63{ return myMucTrkIdx;}

◆ MucTrkIdx() [2/2]

int RecTrackList::MucTrkIdx ( )
inline

Definition at line 63 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

63{ return myMucTrkIdx;}

◆ operator=() [1/2]

RecTrackList & RecTrackList::operator= ( const RecTrackList trk)

Definition at line 41 of file RecTrackList.cxx.

42{
43 myTrkId = trk.myTrkId;
44 myMdcTrk = trk.myMdcTrk;
45 myKalTrk = trk.myKalTrk;
46 myMdcDedx = trk.myMdcDedx;
47 myExtTrk = trk.myExtTrk;
48 myTofTrk = trk.myTofTrk;
49 myRecEmcShower = trk.myRecEmcShower;
50 myMucTrk = trk.myMucTrk;
51 myMdcTrkIdx = trk.myMdcTrkIdx;
52 myKalTrkIdx = trk.myKalTrkIdx;
53 myMdcDedxIdx = trk.myMdcDedxIdx;
54 myExtTrkIdx = trk.myExtTrkIdx;
55 myTofTrkIdx = trk.myTofTrkIdx;
56 myRecEmcShowerIdx = trk.myRecEmcShowerIdx;
57 myMucTrkIdx = trk.myMucTrkIdx;
58
59 return *this;
60}

◆ operator=() [2/2]

RecTrackList & RecTrackList::operator= ( const RecTrackList )

◆ setDedxTrk() [1/2]

void RecTrackList::setDedxTrk ( RecMdcDedx trk)
inline

Definition at line 51 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

51{ myMdcDedx = trk;}

◆ setDedxTrk() [2/2]

void RecTrackList::setDedxTrk ( RecMdcDedx trk)
inline

Definition at line 51 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

51{ myMdcDedx = trk;}

◆ setDedxTrkIdx() [1/2]

void RecTrackList::setDedxTrkIdx ( int  idx)
inline

Definition at line 67 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

67{ myMdcDedxIdx = idx ;}

◆ setDedxTrkIdx() [2/2]

void RecTrackList::setDedxTrkIdx ( int  idx)
inline

Definition at line 67 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

67{ myMdcDedxIdx = idx ;}

◆ setEmcTrk() [1/2]

void RecTrackList::setEmcTrk ( RecEmcShower trk)
inline

Definition at line 54 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

54{ myRecEmcShower = trk;}

◆ setEmcTrk() [2/2]

void RecTrackList::setEmcTrk ( RecEmcShower trk)
inline

Definition at line 54 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

54{ myRecEmcShower = trk;}

◆ setEmcTrkIdx() [1/2]

void RecTrackList::setEmcTrkIdx ( int  idx)
inline

Definition at line 70 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

70{ myRecEmcShowerIdx = idx ;}

◆ setEmcTrkIdx() [2/2]

void RecTrackList::setEmcTrkIdx ( int  idx)
inline

Definition at line 70 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

70{ myRecEmcShowerIdx = idx ;}

◆ setExtTrk() [1/2]

void RecTrackList::setExtTrk ( RecExtTrack trk)
inline

Definition at line 52 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

52{ myExtTrk = trk;}

◆ setExtTrk() [2/2]

void RecTrackList::setExtTrk ( RecExtTrack trk)
inline

Definition at line 52 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

52{ myExtTrk = trk;}

◆ setExtTrkIdx() [1/2]

void RecTrackList::setExtTrkIdx ( int  idx)
inline

Definition at line 68 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

68{ myExtTrkIdx = idx ;}

◆ setExtTrkIdx() [2/2]

void RecTrackList::setExtTrkIdx ( int  idx)
inline

Definition at line 68 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

68{ myExtTrkIdx = idx ;}

◆ setMdcKalTrk() [1/2]

void RecTrackList::setMdcKalTrk ( RecMdcKalTrack trk)
inline

Definition at line 50 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

50{ myKalTrk = trk;}

◆ setMdcKalTrk() [2/2]

void RecTrackList::setMdcKalTrk ( RecMdcKalTrack trk)
inline

Definition at line 50 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

50{ myKalTrk = trk;}

◆ setMdcKalTrkIdx() [1/2]

void RecTrackList::setMdcKalTrkIdx ( int  idx)
inline

Definition at line 66 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

66{ myKalTrkIdx = idx ;}

◆ setMdcKalTrkIdx() [2/2]

void RecTrackList::setMdcKalTrkIdx ( int  idx)
inline

Definition at line 66 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

66{ myKalTrkIdx = idx ;}

◆ setMdcTrk() [1/2]

void RecTrackList::setMdcTrk ( RecMdcTrack trk)
inline

Definition at line 49 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

49{ myMdcTrk = trk;}

◆ setMdcTrk() [2/2]

void RecTrackList::setMdcTrk ( RecMdcTrack trk)
inline

Definition at line 49 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

49{ myMdcTrk = trk;}

◆ setMdcTrkIdx() [1/2]

void RecTrackList::setMdcTrkIdx ( int  idx)
inline

Definition at line 65 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

65{ myMdcTrkIdx = idx ;}

◆ setMdcTrkIdx() [2/2]

void RecTrackList::setMdcTrkIdx ( int  idx)
inline

Definition at line 65 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

65{ myMdcTrkIdx = idx ;}

◆ setMucTrk() [1/2]

void RecTrackList::setMucTrk ( RecMucTrack trk)
inline

Definition at line 55 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

55{ myMucTrk = trk;}

◆ setMucTrk() [2/2]

void RecTrackList::setMucTrk ( RecMucTrack trk)
inline

Definition at line 55 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

55{ myMucTrk = trk;}

◆ setMucTrkIdx() [1/2]

void RecTrackList::setMucTrkIdx ( int  idx)
inline

Definition at line 71 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

71{ myMucTrkIdx = idx;}

◆ setMucTrkIdx() [2/2]

void RecTrackList::setMucTrkIdx ( int  idx)
inline

Definition at line 71 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

71{ myMucTrkIdx = idx;}

◆ setTofTrk() [1/2]

void RecTrackList::setTofTrk ( RecTofTrack trk)
inline

Definition at line 53 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

53{ myTofTrk = trk;}

◆ setTofTrk() [2/2]

void RecTrackList::setTofTrk ( RecTofTrack trk)
inline

Definition at line 53 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

53{ myTofTrk = trk;}

◆ setTofTrkIdx() [1/2]

void RecTrackList::setTofTrkIdx ( int  idx)
inline

Definition at line 69 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

69{ myTofTrkIdx = idx ;}

◆ setTofTrkIdx() [2/2]

void RecTrackList::setTofTrkIdx ( int  idx)
inline

Definition at line 69 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

69{ myTofTrkIdx = idx ;}

◆ setTrackID() [1/2]

void RecTrackList::setTrackID ( const int  trkID)
inline

Definition at line 48 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

48{ myTrkId = trkID;}

◆ setTrackID() [2/2]

void RecTrackList::setTrackID ( const int  trkID)
inline

Definition at line 48 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

48{ myTrkId = trkID;}

◆ TofTrk() [1/2]

RecTofTrack * RecTrackList::TofTrk ( )
inline

Definition at line 44 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

44{return myTofTrk;}

◆ TofTrk() [2/2]

RecTofTrack * RecTrackList::TofTrk ( )
inline

Definition at line 44 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

44{return myTofTrk;}

◆ TofTrkIdx() [1/2]

int RecTrackList::TofTrkIdx ( )
inline

Definition at line 61 of file Event/RecTrackList/RecTrackList-00-00-09/RecTrackList/RecTrackList.h.

61{ return myTofTrkIdx;}

◆ TofTrkIdx() [2/2]

int RecTrackList::TofTrkIdx ( )
inline

Definition at line 61 of file InstallArea/include/RecTrackList/RecTrackList/RecTrackList.h.

61{ return myTofTrkIdx;}

The documentation for this class was generated from the following files: