Class Reference for E1039 Core & Analysis Software
PHG4TruthSubsystem.cc
Go to the documentation of this file.
1 #include "PHG4TruthSubsystem.h"
2 #include "PHG4TruthEventAction.h"
5 
6 
8 
9 #include "PHG4VtxPointv1.h"
10 #include "PHG4Particlev2.h"
11 
12 #include "PHG4InEvent.h"
13 
16 #include <phool/getClass.h>
17 #include <phool/recoConsts.h>
18 
19 #include <Geant4/G4ParticleTable.hh>
20 #include <Geant4/G4ParticleDefinition.hh>
21 #include <Geant4/G4SystemOfUnits.hh>
22 
23 #include <cassert>
24 #include <iostream>
25 
26 using namespace std;
27 
28 //_______________________________________________________________________
30  PHG4Subsystem( name ),
31  eventAction_( NULL ),
32  steppingAction_( NULL ),
33  trackingAction_( NULL ),
34  saveOnlyEmbeded_(false)
35 {}
36 
37 //_______________________________________________________________________
39 {
40 
41  PHNodeIterator iter( topNode );
42 
43  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
44  if (!runNode) {
45  runNode = new PHCompositeNode("RUN");
46  topNode->addNode(runNode);
47  }
48 
49  SQRun* sqrun = findNode::getClass<SQRun>(topNode, "SQRun");
50  if (!sqrun) {
51  sqrun = new SQRun_v1();
52  runNode->addNode(new PHIODataNode<PHObject>(sqrun, "SQRun", "PHObject"));
53  }
54  int run_id = recoConsts::instance()->get_IntFlag("RUNNUMBER");
55  sqrun->set_run_id(run_id);
56 
57  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST" ));
58 
59  // create truth information container
60  PHG4TruthInfoContainer* truthInfoList = findNode::getClass<PHG4TruthInfoContainer>( topNode , "G4TruthInfo" );
61  if ( !truthInfoList )
62  {
63  truthInfoList = new PHG4TruthInfoContainer();
64  dstNode->addNode( new PHIODataNode<PHObject>( truthInfoList, "G4TruthInfo", "PHObject" ));
65  }
66 
67  // event action
68  eventAction_ = new PHG4TruthEventAction();
69 
70  // create stepping action
71  //steppingAction_ = new PHG4TruthSteppingAction( eventAction_ );
72 
73  // create tracking action
74  trackingAction_ = new PHG4TruthTrackingAction( eventAction_ );
75 
76  return 0;
77 }
78 
79 //_______________________________________________________________________
80 int
82 {
83  // pass top node to stepping action so that it gets
84  // relevant nodes needed internally
85  if ( eventAction_ )
86  {
87  eventAction_->SetInterfacePointers( topNode );
88  }
89  else
90  {
91  cout << PHWHERE << " No EventAction registered" << endl;
92  exit(1);
93  }
94 
95  if ( trackingAction_ )
96  {
97  trackingAction_->SetInterfacePointers( topNode );
98  }
99  else
100  {
101  cout << PHWHERE << " No TrackingAction registered" << endl;
102  exit(1);
103  }
104 
106 }
107 
109 {
110  if (saveOnlyEmbeded_)
111  {
112  if (Verbosity()>1)
113  {
114  cout <<__PRETTY_FUNCTION__<<" - INFO - only save the G4 truth information that is associated with the embedded particle"<<endl;
115  }
116 
117  PHG4TruthInfoContainer* truthInfoList = findNode::getClass<PHG4TruthInfoContainer>( topNode , "G4TruthInfo" );
118  assert(truthInfoList);
119 
120  set<int> savevtxlist;
121 
122  // remove particle that is not embedd associated
123  PHG4TruthInfoContainer::Range truth_range = truthInfoList->GetParticleRange();
124  PHG4TruthInfoContainer::Iterator truthiter = truth_range.first;
125  while (truthiter != truth_range.second)
126  {
127  const int primary_id = (truthiter->second)->get_primary_id();
128  if (truthInfoList->isEmbeded(primary_id) <= 0)
129  {
130  // not a embed associated particle
131 
132  truthInfoList->delete_particle(truthiter++);
133  }
134  else
135  {
136  // save vertex id for primary particle which leaves no hit
137  // in active area
138  savevtxlist.insert((truthiter->second)->get_vtx_id());
139  ++truthiter;
140  }
141  }
142 
143  // remove vertex that is not embedd associated
144  PHG4TruthInfoContainer::VtxRange vtxrange = truthInfoList->GetVtxRange();
145  PHG4TruthInfoContainer::VtxIterator vtxiter = vtxrange.first;
146  while (vtxiter != vtxrange.second)
147  {
148  if (savevtxlist.find(vtxiter->first) == savevtxlist.end())
149  {
150  truthInfoList->delete_vtx(vtxiter++);
151  }
152  else
153  {
154  ++vtxiter;
155  }
156  }
157  }
158 
159  return 0;
160 }
161 
162 int
164 {
165  trackingAction_->ResetEvent(topNode);
166  eventAction_->ResetEvent(topNode);
167  return 0;
168 }
169 
170 //_______________________________________________________________________
172 { return eventAction_; }
173 
174 
175 //_______________________________________________________________________
177 { return steppingAction_; }
178 
181 {
182  return trackingAction_;
183 }
#define NULL
Definition: Pdb.h:9
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
PHBoolean addNode(PHNode *)
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
int ResetEvent(PHCompositeNode *)
void SetInterfacePointers(PHCompositeNode *)
get relevant nodes from top node passed as argument
VtxRange GetVtxRange()
Get a range of iterators covering the entire vertex container.
Range GetParticleRange()
Get a range of iterators covering the entire container.
std::pair< Iterator, Iterator > Range
int isEmbeded(const int trackid) const
void delete_particle(Iterator piter)
std::pair< VtxIterator, VtxIterator > VtxRange
void delete_vtx(VtxIterator viter)
int InitRun(PHCompositeNode *)
init
PHG4TruthSubsystem(const std::string &name="TRUTH")
constructor
virtual PHG4EventAction * GetEventAction(void) const
accessors (reimplemented)
int ResetEvent(PHCompositeNode *)
Clean up after each event.
virtual int process_after_geant(PHCompositeNode *)
event processing
virtual PHG4TrackingAction * GetTrackingAction(void) const
return pointer to this subsystem stepping action
int process_event(PHCompositeNode *)
event processing
virtual PHG4SteppingAction * GetSteppingAction(void) const
return pointer to this subsystem stepping action
int ResetEvent(PHCompositeNode *)
virtual void SetInterfacePointers(PHCompositeNode *)
Set pointers to the i/o nodes.
PHNode * findFirst(const std::string &, const std::string &)
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
virtual void set_run_id(const int a)
Definition: SQRun.h:33
static recoConsts * instance()
Definition: recoConsts.cc:7
#define PHWHERE
Definition: phool.h:23