Class Reference for E1039 Core & Analysis Software
PHG4EventActionClearZeroEdep.cc
Go to the documentation of this file.
3 
4 #include <phool/getClass.h>
5 
6 #include <Geant4/G4Event.hh>
7 
8 #include <boost/foreach.hpp>
9 
10 using namespace std;
11 
12 //___________________________________________________
14  topNode(node)
15 {
16  AddNode(name);
17 }
18 
19 
20 void
21 PHG4EventActionClearZeroEdep::AddNode(const std::string &name)
22 {
23  nodename_set.insert(name);
24 }
25 
26 //___________________________________________________
28 {
29  BOOST_FOREACH(string node, nodename_set)
30  {
31  PHG4HitContainer* generic_hits = findNode::getClass<PHG4HitContainer>( topNode , node.c_str());
32  if (generic_hits)
33  {
34  generic_hits->RemoveZeroEDep();
35  }
36  }
37 }
void AddNode(const std::string &name)
PHG4EventActionClearZeroEdep(PHCompositeNode *topNode, const std::string &name)
constructor