CGEM BOSS 6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
TDstEvent Class Reference

#include <TDstEvent.h>

+ Inheritance diagram for TDstEvent:

Public Member Functions

 TDstEvent ()
 
virtual ~TDstEvent ()
 
void initialize ()
 
void Clear (Option_t *option="")
 
void Print (Option_t *option="") const
 
const TObjArray * getMdcTrackCol () const
 retrieve the whole TObjArray of MdcTrack Data
 
void addMdcTrack (TMdcTrack *Track)
 Add a Tkrtrack into the Mdc data collection.
 
const TMdcTrackgetMdcTrack (Int_t i) const
 retrieve a Mdctrack from the collection, using the index into the array
 
void clearMdcTrackCol ()
 clear the whole array (necessary because of the consts-s)
 
const TObjArray * getCgemTrackCol () const
 retrieve the whole TObjArray of CgemTrack Data
 
void addCgemTrack (TCgemTrack *Track)
 Add a tkrtrack into the Cgem data collection.
 
const TCgemTrackgetCgemTrack (Int_t i) const
 retrieve a CgemTrack from the collection, using the index into the array
 
void clearCgemTrackCol ()
 clear the whole array (necessary because of the consts-s)
 
const TObjArray * getCgemSegmentCol () const
 retrieve the whole TObjArray of CgemSegment Data
 
void addCgemSegment (TCgemSegment *Segment)
 Add a segment into the Cgem data collection.
 
const TCgemSegmentgetCgemSegment (Int_t i) const
 retrieve a CgemSegment from the collection, using the index into the array
 
void clearCgemSegmentCol ()
 clear the whole array (necessary because of the consts-s)
 
const TObjArray * getEmcTrackCol () const
 retrieve the whole TObjArray of EmcTrack Data
 
void addEmcTrack (TEmcTrack *Track)
 Add a TkrTrack into the Emc data collection.
 
const TEmcTrackgetEmcTrack (Int_t i) const
 retrieve a EmcTrack from the collection, using the index into the array
 
void clearEmcTrackCol ()
 clear the whole array (necessary because of the consts-s)
 
const TObjArray * getTofTrackCol () const
 retrieve the whole TObjArray of TofTrack Data
 
void addTofTrack (TTofTrack *Track)
 Add a TofTrack into the TOF Data collection.
 
const TTofTrackgetTofTrack (Int_t i) const
 retrieve a TofTrack From the collection, using the index into the array
 
void clearTofTrackCol ()
 clear the whole array
 
const TObjArray * getMucTrackCol () const
 retrieve the whole TObjArray of MucTrack Data
 
void addMucTrack (TMucTrack *Track)
 Add a MucTrack into the TOF Data collection.
 
const TMucTrackgetMucTrack (Int_t i) const
 retrieve a MucTrack From the collection, using the index into the array
 
void clearMucTrackCol ()
 clear the whole array
 
const TObjArray * getMdcDedxCol () const
 retrieve the whole TObjArray of Dedx Data
 
void addMdcDedx (TMdcDedx *Track)
 Add a Dedx into the TOF Data collection.
 
const TMdcDedxgetMdcDedx (Int_t i) const
 retrieve a TofTrack From the collection, using the index into the array
 
void clearMdcDedxCol ()
 clear the whole array
 
const TObjArray * getCgemDedxCol () const
 retrieve the whole TObjArray of Dedx Data
 
void addCgemDedx (TCgemDedx *Track)
 Add a Dedx into the TOF Data collection.
 
const TCgemDedxgetCgemDedx (Int_t i) const
 retrieve a TofTrack From the collection, using the index into the array
 
void clearCgemDedxCol ()
 clear the whole array
 
const TObjArray * getExtTrackCol () const
 retrieve the whole TObjArray of Ext Data
 
void addExtTrack (TExtTrack *Track)
 Add a ExtTrack into the Ext Data collection.
 
const TExtTrackgetExtTrack (Int_t i) const
 retrieve a MucTrack From the collection, using the index into the array
 
void clearExtTrackCol ()
 clear the whole array
 
const TObjArray * getMdcKalTrackCol () const
 
void addMdcKalTrack (TMdcKalTrack *Track)
 
const TMdcKalTrackgetMdcKalTrack (Int_t i) const
 
void clearMdcKalTrackCol ()
 
const TObjArray * getCgemKalTrackCol () const
 
void addCgemKalTrack (TCgemKalTrack *Track)
 
const TCgemKalTrackgetCgemKalTrack (Int_t i) const
 
void clearCgemKalTrackCol ()
 

Detailed Description

Definition at line 20 of file TDstEvent.h.

Constructor & Destructor Documentation

◆ TDstEvent()

TDstEvent::TDstEvent ( )

Definition at line 21 of file TDstEvent.cxx.

22{
23 //Dst Track
24
25 if (!s_staticMdcTrackCol) {
26 s_staticMdcTrackCol = new TObjArray();
27 }
28 m_mdcTrackCol = s_staticMdcTrackCol;
29
30 if (!s_staticCgemTrackCol) {
31 s_staticCgemTrackCol = new TObjArray();
32 }
33 m_cgemTrackCol = s_staticCgemTrackCol;
34
35 if (!s_staticCgemSegmentCol) {
36 s_staticCgemSegmentCol = new TObjArray();
37 }
38 m_cgemSegmentCol = s_staticCgemSegmentCol;
39
40 if (!s_staticEmcTrackCol ){
41 s_staticEmcTrackCol = new TObjArray();
42 }
43 m_emcTrackCol = s_staticEmcTrackCol;
44
45 if (! s_staticTofTrackCol ){
46 s_staticTofTrackCol = new TObjArray();
47 }
48 m_tofTrackCol = s_staticTofTrackCol;
49
50 if (! s_staticMucTrackCol ){
51 s_staticMucTrackCol = new TObjArray();
52 }
53 m_mucTrackCol = s_staticMucTrackCol;
54
55 if (! s_staticMdcDedxCol ){
56 s_staticMdcDedxCol = new TObjArray();
57 }
58 m_mdcDedxCol = s_staticMdcDedxCol;
59
60 if (! s_staticCgemDedxCol ){
61 s_staticCgemDedxCol = new TObjArray();
62 }
63 m_cgemDedxCol = s_staticCgemDedxCol;
64
65 if (! s_staticExtTrackCol ){
66 s_staticExtTrackCol = new TObjArray();
67 }
68 m_extTrackCol = s_staticExtTrackCol;
69
70
71 if (! s_staticMdcKalTrackCol ){
72 s_staticMdcKalTrackCol = new TObjArray();
73 }
74 m_mdcKalTrackCol = s_staticMdcKalTrackCol;
75
76 if (! s_staticCgemKalTrackCol ){
77 s_staticCgemKalTrackCol = new TObjArray();
78 }
79 m_cgemKalTrackCol = s_staticCgemKalTrackCol;
80
81 Clear();
82
83}
void Clear(Option_t *option="")

◆ ~TDstEvent()

TDstEvent::~TDstEvent ( )
virtual

Definition at line 86 of file TDstEvent.cxx.

86 {
87
88 /**************************** Dst Track *************************/
89 if(m_mdcTrackCol == s_staticMdcTrackCol) s_staticMdcTrackCol = 0;
90 m_mdcTrackCol->Delete();
91 delete m_mdcTrackCol;
92 m_mdcTrackCol = 0;
93
94 if(m_cgemSegmentCol == s_staticCgemSegmentCol) s_staticCgemSegmentCol = 0;
95 m_cgemSegmentCol->Delete();
96 delete m_cgemSegmentCol;
97 m_cgemSegmentCol = 0;
98
99 if(m_cgemTrackCol == s_staticCgemTrackCol) s_staticCgemTrackCol = 0;
100 m_cgemTrackCol->Delete();
101 delete m_cgemTrackCol;
102 m_cgemTrackCol = 0;
103
104 if(m_emcTrackCol == s_staticEmcTrackCol) s_staticEmcTrackCol = 0;
105 m_emcTrackCol->Delete();
106 delete m_emcTrackCol;
107 m_emcTrackCol = 0;
108
109 if(m_tofTrackCol == s_staticTofTrackCol ) s_staticTofTrackCol = 0;
110 m_tofTrackCol->Delete();
111 delete m_tofTrackCol;
112 m_tofTrackCol = 0;
113
114 if(m_mucTrackCol == s_staticMucTrackCol ) s_staticMucTrackCol = 0;
115 m_mucTrackCol->Delete();
116 delete m_mucTrackCol;
117 m_mucTrackCol = 0;
118
119 if(m_mdcDedxCol == s_staticMdcDedxCol ) s_staticMdcDedxCol = 0;
120 m_mdcDedxCol->Delete();
121 delete m_mdcDedxCol;
122 m_mdcDedxCol = 0;
123
124 if(m_cgemDedxCol == s_staticCgemDedxCol ) s_staticCgemDedxCol = 0;
125 m_cgemDedxCol->Delete();
126 delete m_cgemDedxCol;
127 m_cgemDedxCol = 0;
128
129 if(m_extTrackCol == s_staticExtTrackCol ) s_staticExtTrackCol = 0;
130 m_extTrackCol->Delete();
131 delete m_extTrackCol;
132 m_extTrackCol = 0;
133
134 if(m_mdcKalTrackCol == s_staticMdcKalTrackCol ) s_staticMdcKalTrackCol = 0;
135 m_mdcKalTrackCol->Delete();
136 delete m_mdcKalTrackCol;
137 m_mdcKalTrackCol = 0;
138
139 if(m_cgemKalTrackCol == s_staticCgemKalTrackCol ) s_staticCgemKalTrackCol = 0;
140 m_cgemKalTrackCol->Delete();
141 delete m_cgemKalTrackCol;
142 m_cgemKalTrackCol = 0;
143
144
145}

Member Function Documentation

◆ addCgemDedx()

void TDstEvent::addCgemDedx ( TCgemDedx * Track)

Add a Dedx into the TOF Data collection.

Definition at line 238 of file TDstEvent.cxx.

238 {
239 m_cgemDedxCol->Add(Track);
240}
#define Track
Definition TTrackBase.h:30

Referenced by CgemDedxCnv::DataObjectToTObject().

◆ addCgemKalTrack()

void TDstEvent::addCgemKalTrack ( TCgemKalTrack * Track)

Definition at line 272 of file TDstEvent.cxx.

272 {
273 m_cgemKalTrackCol->Add(Track);
274}

Referenced by CgemKalTrackCnv::DataObjectToTObject().

◆ addCgemSegment()

void TDstEvent::addCgemSegment ( TCgemSegment * Segment)

Add a segment into the Cgem data collection.

Definition at line 184 of file TDstEvent.cxx.

184 {
185 m_cgemSegmentCol->Add(Segment);
186}
#define Segment
Definition TTrackBase.h:31

Referenced by CgemSegmentCnv::DataObjectToTObject().

◆ addCgemTrack()

void TDstEvent::addCgemTrack ( TCgemTrack * Track)

Add a tkrtrack into the Cgem data collection.

Cgem.

Definition at line 174 of file TDstEvent.cxx.

174 {
175 m_cgemTrackCol->Add(Track);
176}

Referenced by CgemTrackCnv::DataObjectToTObject().

◆ addEmcTrack()

void TDstEvent::addEmcTrack ( TEmcTrack * Track)

Add a TkrTrack into the Emc data collection.

Emc.

Definition at line 194 of file TDstEvent.cxx.

194 {
195 m_emcTrackCol->Add(Track);
196}

Referenced by EmcTrackCnv::DataObjectToTObject().

◆ addExtTrack()

void TDstEvent::addExtTrack ( TExtTrack * Track)

Add a ExtTrack into the Ext Data collection.

Definition at line 250 of file TDstEvent.cxx.

250 {
251 m_extTrackCol->Add(Track);
252}

Referenced by ExtTrackCnv::DataObjectToTObject().

◆ addMdcDedx()

void TDstEvent::addMdcDedx ( TMdcDedx * Track)

Add a Dedx into the TOF Data collection.

Dedx.

Definition at line 227 of file TDstEvent.cxx.

227 {
228 m_mdcDedxCol->Add(Track);
229}

Referenced by MdcDedxCnv::DataObjectToTObject().

◆ addMdcKalTrack()

void TDstEvent::addMdcKalTrack ( TMdcKalTrack * Track)

Definition at line 261 of file TDstEvent.cxx.

261 {
262 m_mdcKalTrackCol->Add(Track);
263}

Referenced by MdcKalTrackCnv::DataObjectToTObject().

◆ addMdcTrack()

void TDstEvent::addMdcTrack ( TMdcTrack * Track)

Add a Tkrtrack into the Mdc data collection.

Mdc.

Definition at line 164 of file TDstEvent.cxx.

164 {
165 m_mdcTrackCol->Add(Track);
166}

Referenced by MdcTrackCnv::DataObjectToTObject().

◆ addMucTrack()

void TDstEvent::addMucTrack ( TMucTrack * Track)

Add a MucTrack into the TOF Data collection.

Muc.

Definition at line 216 of file TDstEvent.cxx.

216 {
217 m_mucTrackCol->Add(Track);
218}

Referenced by MucTrackCnv::DataObjectToTObject().

◆ addTofTrack()

void TDstEvent::addTofTrack ( TTofTrack * Track)

Add a TofTrack into the TOF Data collection.

Tof.

Definition at line 205 of file TDstEvent.cxx.

205 {
206 m_tofTrackCol->Add(Track);
207}

Referenced by TofTrackCnv::DataObjectToTObject().

◆ Clear()

void TDstEvent::Clear ( Option_t * option = "")

Definition at line 152 of file TDstEvent.cxx.

152 {
153
154}

Referenced by TDstEvent().

◆ clearCgemDedxCol()

void TDstEvent::clearCgemDedxCol ( )
inline

clear the whole array

Definition at line 133 of file TDstEvent.h.

133{ m_cgemDedxCol->Clear();}

Referenced by CgemDedxCnv::DataObjectToTObject().

◆ clearCgemKalTrackCol()

void TDstEvent::clearCgemKalTrackCol ( )
inline

Definition at line 157 of file TDstEvent.h.

157{ m_cgemKalTrackCol->Clear();}

Referenced by CgemKalTrackCnv::DataObjectToTObject().

◆ clearCgemSegmentCol()

void TDstEvent::clearCgemSegmentCol ( )
inline

clear the whole array (necessary because of the consts-s)

Definition at line 73 of file TDstEvent.h.

73{ m_cgemSegmentCol->Clear(); }

Referenced by CgemSegmentCnv::DataObjectToTObject().

◆ clearCgemTrackCol()

void TDstEvent::clearCgemTrackCol ( )
inline

clear the whole array (necessary because of the consts-s)

Definition at line 61 of file TDstEvent.h.

61{ m_cgemTrackCol->Clear(); }

Referenced by CgemTrackCnv::DataObjectToTObject().

◆ clearEmcTrackCol()

void TDstEvent::clearEmcTrackCol ( )
inline

clear the whole array (necessary because of the consts-s)

Definition at line 85 of file TDstEvent.h.

85{ m_emcTrackCol->Clear(); }

Referenced by EmcTrackCnv::DataObjectToTObject().

◆ clearExtTrackCol()

void TDstEvent::clearExtTrackCol ( )
inline

clear the whole array

Definition at line 145 of file TDstEvent.h.

145{ m_extTrackCol->Clear();}

Referenced by ExtTrackCnv::DataObjectToTObject().

◆ clearMdcDedxCol()

void TDstEvent::clearMdcDedxCol ( )
inline

clear the whole array

Definition at line 121 of file TDstEvent.h.

121{ m_mdcDedxCol->Clear();}

Referenced by MdcDedxCnv::DataObjectToTObject().

◆ clearMdcKalTrackCol()

void TDstEvent::clearMdcKalTrackCol ( )
inline

Definition at line 151 of file TDstEvent.h.

151{ m_mdcKalTrackCol->Clear();}

Referenced by MdcKalTrackCnv::DataObjectToTObject().

◆ clearMdcTrackCol()

void TDstEvent::clearMdcTrackCol ( )
inline

clear the whole array (necessary because of the consts-s)

Definition at line 49 of file TDstEvent.h.

49{ m_mdcTrackCol->Clear(); }

Referenced by MdcTrackCnv::DataObjectToTObject().

◆ clearMucTrackCol()

void TDstEvent::clearMucTrackCol ( )
inline

clear the whole array

Definition at line 109 of file TDstEvent.h.

109{ m_mucTrackCol->Clear();}

Referenced by MucTrackCnv::DataObjectToTObject().

◆ clearTofTrackCol()

void TDstEvent::clearTofTrackCol ( )
inline

clear the whole array

Definition at line 97 of file TDstEvent.h.

97{ m_tofTrackCol->Clear();}

Referenced by TofTrackCnv::DataObjectToTObject().

◆ getCgemDedx()

const TCgemDedx * TDstEvent::getCgemDedx ( Int_t i) const

retrieve a TofTrack From the collection, using the index into the array

Definition at line 243 of file TDstEvent.cxx.

243 {
244 if(Int_t(i) >=m_cgemDedxCol->GetEntries())
245 return 0;
246 return (TCgemDedx*) m_cgemDedxCol->At(i);
247}

◆ getCgemDedxCol()

const TObjArray * TDstEvent::getCgemDedxCol ( ) const
inline

retrieve the whole TObjArray of Dedx Data

Definition at line 124 of file TDstEvent.h.

124{ return m_cgemDedxCol; };

Referenced by CgemDedxCnv::DataObjectToTObject().

◆ getCgemKalTrack()

const TCgemKalTrack * TDstEvent::getCgemKalTrack ( Int_t i) const

Definition at line 276 of file TDstEvent.cxx.

276 {
277 if(Int_t(i) >=m_cgemKalTrackCol->GetEntries())
278 return 0;
279 return (TCgemKalTrack*) m_cgemKalTrackCol->At(i);
280}

◆ getCgemKalTrackCol()

const TObjArray * TDstEvent::getCgemKalTrackCol ( ) const
inline

Definition at line 154 of file TDstEvent.h.

154{ return m_cgemKalTrackCol; };

Referenced by CgemKalTrackCnv::DataObjectToTObject().

◆ getCgemSegment()

const TCgemSegment * TDstEvent::getCgemSegment ( Int_t i) const

retrieve a CgemSegment from the collection, using the index into the array

Definition at line 188 of file TDstEvent.cxx.

188 {
189 if (Int_t(i) >= m_cgemSegmentCol->GetEntries())
190 return 0;
191 return (TCgemSegment*)m_cgemSegmentCol->At(i);
192}

◆ getCgemSegmentCol()

const TObjArray * TDstEvent::getCgemSegmentCol ( ) const
inline

retrieve the whole TObjArray of CgemSegment Data

Definition at line 64 of file TDstEvent.h.

64{ return m_cgemSegmentCol; };

Referenced by CgemSegmentCnv::DataObjectToTObject().

◆ getCgemTrack()

const TCgemTrack * TDstEvent::getCgemTrack ( Int_t i) const

retrieve a CgemTrack from the collection, using the index into the array

Definition at line 178 of file TDstEvent.cxx.

178 {
179 if (Int_t(i) >= m_cgemTrackCol->GetEntries())
180 return 0;
181 return (TCgemTrack*)m_cgemTrackCol->At(i);
182}

◆ getCgemTrackCol()

const TObjArray * TDstEvent::getCgemTrackCol ( ) const
inline

retrieve the whole TObjArray of CgemTrack Data

Definition at line 52 of file TDstEvent.h.

52{ return m_cgemTrackCol; };

Referenced by CgemTrackCnv::DataObjectToTObject().

◆ getEmcTrack()

const TEmcTrack * TDstEvent::getEmcTrack ( Int_t i) const

retrieve a EmcTrack from the collection, using the index into the array

Definition at line 198 of file TDstEvent.cxx.

198 {
199 if(Int_t(i) >= m_emcTrackCol->GetEntries())
200 return 0;
201 return (TEmcTrack*)m_emcTrackCol->At(i);
202}

Referenced by BesClient::GetEvent().

◆ getEmcTrackCol()

const TObjArray * TDstEvent::getEmcTrackCol ( ) const
inline

retrieve the whole TObjArray of EmcTrack Data

Definition at line 76 of file TDstEvent.h.

76{ return m_emcTrackCol; };

Referenced by EmcTrackCnv::DataObjectToTObject(), and BesClient::GetEvent().

◆ getExtTrack()

const TExtTrack * TDstEvent::getExtTrack ( Int_t i) const

retrieve a MucTrack From the collection, using the index into the array

Definition at line 254 of file TDstEvent.cxx.

254 {
255 if(Int_t(i) >=m_extTrackCol->GetEntries())
256 return 0;
257 return (TExtTrack*) m_extTrackCol->At(i);
258}

◆ getExtTrackCol()

const TObjArray * TDstEvent::getExtTrackCol ( ) const
inline

retrieve the whole TObjArray of Ext Data

Definition at line 136 of file TDstEvent.h.

136{ return m_extTrackCol; };

Referenced by ExtTrackCnv::DataObjectToTObject().

◆ getMdcDedx()

const TMdcDedx * TDstEvent::getMdcDedx ( Int_t i) const

retrieve a TofTrack From the collection, using the index into the array

Definition at line 232 of file TDstEvent.cxx.

232 {
233 if(Int_t(i) >=m_mdcDedxCol->GetEntries())
234 return 0;
235 return (TMdcDedx*) m_mdcDedxCol->At(i);
236}

◆ getMdcDedxCol()

const TObjArray * TDstEvent::getMdcDedxCol ( ) const
inline

retrieve the whole TObjArray of Dedx Data

Definition at line 112 of file TDstEvent.h.

112{ return m_mdcDedxCol; };

Referenced by MdcDedxCnv::DataObjectToTObject().

◆ getMdcKalTrack()

const TMdcKalTrack * TDstEvent::getMdcKalTrack ( Int_t i) const

Definition at line 265 of file TDstEvent.cxx.

265 {
266 if(Int_t(i) >=m_mdcKalTrackCol->GetEntries())
267 return 0;
268 return (TMdcKalTrack*) m_mdcKalTrackCol->At(i);
269}

◆ getMdcKalTrackCol()

const TObjArray * TDstEvent::getMdcKalTrackCol ( ) const
inline

Definition at line 148 of file TDstEvent.h.

148{ return m_mdcKalTrackCol; };

Referenced by MdcKalTrackCnv::DataObjectToTObject().

◆ getMdcTrack()

const TMdcTrack * TDstEvent::getMdcTrack ( Int_t i) const

retrieve a Mdctrack from the collection, using the index into the array

Definition at line 168 of file TDstEvent.cxx.

168 {
169 if (Int_t(i) >= m_mdcTrackCol->GetEntries())
170 return 0;
171 return (TMdcTrack*)m_mdcTrackCol->At(i);
172}

Referenced by BesClient::GetEvent().

◆ getMdcTrackCol()

const TObjArray * TDstEvent::getMdcTrackCol ( ) const
inline

retrieve the whole TObjArray of MdcTrack Data

Definition at line 40 of file TDstEvent.h.

40{ return m_mdcTrackCol; };

Referenced by MdcTrackCnv::DataObjectToTObject(), and BesClient::GetEvent().

◆ getMucTrack()

const TMucTrack * TDstEvent::getMucTrack ( Int_t i) const

retrieve a MucTrack From the collection, using the index into the array

Definition at line 221 of file TDstEvent.cxx.

221 {
222 if(Int_t(i) >=m_mucTrackCol->GetEntries())
223 return 0;
224 return (TMucTrack*) m_mucTrackCol->At(i);
225}

Referenced by BesClient::GetEvent().

◆ getMucTrackCol()

const TObjArray * TDstEvent::getMucTrackCol ( ) const
inline

retrieve the whole TObjArray of MucTrack Data

Definition at line 100 of file TDstEvent.h.

100{ return m_mucTrackCol; };

Referenced by MucTrackCnv::DataObjectToTObject(), and BesClient::GetEvent().

◆ getTofTrack()

const TTofTrack * TDstEvent::getTofTrack ( Int_t i) const

retrieve a TofTrack From the collection, using the index into the array

Definition at line 210 of file TDstEvent.cxx.

210 {
211 if(Int_t(i) >=m_tofTrackCol->GetEntries())
212 return 0;
213 return (TTofTrack*) m_tofTrackCol->At(i);
214}

Referenced by BesClient::GetEvent().

◆ getTofTrackCol()

const TObjArray * TDstEvent::getTofTrackCol ( ) const
inline

retrieve the whole TObjArray of TofTrack Data

Definition at line 88 of file TDstEvent.h.

88{ return m_tofTrackCol; };

Referenced by TofTrackCnv::DataObjectToTObject(), and BesClient::GetEvent().

◆ initialize()

void TDstEvent::initialize ( )

Definition at line 148 of file TDstEvent.cxx.

148 {
149}

Referenced by DstCnv::DataObjectToTObject().

◆ Print()

void TDstEvent::Print ( Option_t * option = "") const

Definition at line 157 of file TDstEvent.cxx.

157 {
158 TObject::Print(option);
159}

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