BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
BesTruthEvent.cc
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.cc
9//////Description:
10
11#include "TruSim/BesTruthEvent.hh"
12#include "TruSim/BesTruthTrack.hh"
13#include "TruSim/BesTruthVertex.hh"
14
15BesTruthEvent::BesTruthEvent() : m_trackList( 0 ), m_vertexList( 0 ) { ; }
16
18 /* for(size_t i=0;i<m_trackList->size();i++)
19 delete (*m_trackList)[i];
20 m_trackList->clear();
21 delete m_trackList;
22
23 for(size_t i=0;i<m_vertexList->size();i++)
24 delete (*m_vertexList)[i];
25 m_vertexList->clear();
26 delete m_vertexList;
27 */
28}