BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/TruSim/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
19{
20 public:
23
24 vector<BesTruthTrack*>* GetTrackList() {return m_trackList;}
25 vector<BesTruthVertex*>* GetVertexList() {return m_vertexList;}
26
27 void SetTrackList(vector<BesTruthTrack*>* trackList) {m_trackList = trackList;}
28 void SetVertexList(vector<BesTruthVertex*>* vertexList) {m_vertexList = vertexList;}
29
30 private:
31 vector<BesTruthTrack*> *m_trackList;
32 vector<BesTruthVertex*> *m_vertexList;
33
34};
35
36#endif
vector< BesTruthVertex * > * GetVertexList()
void SetTrackList(vector< BesTruthTrack * > *trackList)
vector< BesTruthTrack * > * GetTrackList()
void SetVertexList(vector< BesTruthVertex * > *vertexList)