EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EventSmear.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EventSmear.cxx
1 
10 
11 namespace erhic {
12 namespace hadronic {
13 
15  for (unsigned i(0); i < GetNTracks(); ++i) {
16  delete particles.at(i);
17  particles.at(i) = NULL;
18  } // for
19 }
20 
22 }
23 
24 const Smear::ParticleMCS* EventSmear::GetTrack(UInt_t i) const {
25  return particles.at(i);
26 }
27 
29  return particles.at(i);
30 }
31 
32 UInt_t EventSmear::GetNTracks() const {
33  return particles.size();
34 }
35 
37  particles.push_back(p);
38 }
39 
40 } // namespace hadronic
41 } // namespace erhic