BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Simulation/BOOST/TruSim/include/TruSim/BesTruthEvent.hh
Go to the documentation of this file.
1//---------------------------------------------------------------------------//
2//// BOOST --- BESIII Object_Oriented Simulation Tool //
3////---------------------------------------------------------------------------//
4////Author : Dengzy
5////Created: Aug, 2004
6////Modified:
7////Comment:
8////$Id: BesTruthEvent.hh
9
10#ifndef BesTruthEvent_h
11#define BesTruthEvent_h 1
12
13class BesTruthTrack;
14class BesTruthVertex;
15#include <vector>
16using namespace std;
17
18class BesTruthEvent {
19public:
22
23 vector<BesTruthTrack*>* GetTrackList() { return m_trackList; }
24 vector<BesTruthVertex*>* GetVertexList() { return m_vertexList; }
25
26 void SetTrackList( vector<BesTruthTrack*>* trackList ) { m_trackList = trackList; }
27 void SetVertexList( vector<BesTruthVertex*>* vertexList ) { m_vertexList = vertexList; }
28
29private:
30 vector<BesTruthTrack*>* m_trackList;
31 vector<BesTruthVertex*>* m_vertexList;
32};
33
34#endif
void SetTrackList(vector< BesTruthTrack * > *trackList)
void SetVertexList(vector< BesTruthVertex * > *vertexList)