Class Reference for E1039 Core & Analysis Software
SimDstTrimmer.cxx
Go to the documentation of this file.
1 #include <iomanip>
2 #include <fun4all/Fun4AllBase.h>
4 #include <phool/PHNodeIterator.h>
6 #include <phool/PHIODataNode.h>
7 #include <phool/getClass.h>
9 #include "SimDstTrimmer.h"
10 
11 #define LogInfo(message) std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << " " << __FUNCTION__ << " ::: " << message << std::endl
12 
13 using namespace std;
14 
15 SimDstTrimmer::SimDstTrimmer(const std::string& name)
16  : SubsysReco(name), _truth(0)
17 {
18  ;
19 }
20 
22 {
23  ;
24 }
25 
27 {
29 }
30 
32 {
34 }
35 
37 {
38  int ret = GetNodes(topNode);
39  if (ret != Fun4AllReturnCodes::EVENT_OK) return ret;
40 
42  for (PHG4TruthInfoContainer::ShowerIterator it = range.first; it != range.second; ) {
43  _truth->delete_shower(it++);
44  }
45 
47 }
48 
50 {
52 }
53 
54 int SimDstTrimmer::GetNodes(PHCompositeNode* topNode)
55 {
56  _truth = findNode::getClass<PHG4TruthInfoContainer>(topNode, "G4TruthInfo");
57  if (!_truth) {
58  LogInfo("!_truth");
60  }
62 }
63 
#define LogInfo(message)
std::pair< ShowerIterator, ShowerIterator > ShowerRange
void delete_shower(ShowerIterator piter)
ShowerRange GetShowerRange()
Get a range of iterators covering the entire container.
ShowerMap::iterator ShowerIterator
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
virtual ~SimDstTrimmer()
int Init(PHCompositeNode *topNode)
SimDstTrimmer(const std::string &name="SimDstTrimmer")