Class Reference for E1039 Core & Analysis Software
PHG4HeadReco.cc
Go to the documentation of this file.
1 #include "PHG4HeadReco.h"
2 
3 #include "PHG4EventHeaderv1.h"
4 
6 
8 #include <phool/getClass.h>
9 
10 #include <phool/phool.h>
11 
12 #include <TSystem.h>
13 
14 #include <HepMC/GenEvent.h>
15 
16 #include <iostream>
17 
18 using namespace std;
19 
20 PHG4HeadReco::PHG4HeadReco(const std::string &name):
21  SubsysReco(name),
22  evtseq(0)
23 {}
24 
25 int
27 {
28  enum {DSTNODE, RUNNODE, LAST}; // leave LAST at end - it is used for loops
29  // first test if neccessary nodes have been created, if not bail out
30  const char *NName[] = {
31  "DST",
32  "RUN"};
33 
34  PHNodeIterator iter(topNode);
35  PHCompositeNode *outNode[LAST];
36  for (int i=0; i<LAST; i++)
37  {
38  outNode[i] = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode",NName[i]));
39  if (!outNode[i])
40  {
41  cout << PHWHERE << NName[i] << " node is missing, no point in continuing exiting now" << endl;
42  gSystem->Exit(1);
43  // just to make scan-build happy which does not know that gSystem->Exit() terminates
44  exit(1);
45  }
46  }
47  PHG4EventHeader *eventheader = new PHG4EventHeaderv1();
48  PHIODataNode<PHObject> *newNode = new PHIODataNode<PHObject>(eventheader,"EventHeader","PHObject");
49  outNode[DSTNODE]->addNode(newNode);
50 
51  FlagSave *flgsv = new FlagSavev1();
52  PHIODataNode<PHObject> *FlagSaveNode =
53  new PHIODataNode<PHObject>(flgsv, "Flags", "PHObject");
54  outNode[RUNNODE]->addNode(FlagSaveNode);
56 }
57 
58 int
60 {
61  HepMC::GenEvent *hepmcevt = findNode::getClass<HepMC::GenEvent>(topNode, "HEPMC");
62  PHG4EventHeader *evtheader = findNode::getClass<PHG4EventHeader>(topNode,"EventHeader");
63  evtseq++;
64  if (hepmcevt)
65  {
66  evtseq = hepmcevt->event_number();
67  HepMC::HeavyIon *hi = hepmcevt->heavy_ion();
68  if (hi)
69  {
70  evtheader->set_ImpactParameter(hi->impact_parameter());
71  evtheader->set_EventPlaneAngle(hi->event_plane_angle());
72  }
73  }
74  evtheader->set_EvtSequence(evtseq);
75  if (verbosity > 0)
76  {
77  evtheader->identify();
78  }
80 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
PHBoolean addNode(PHNode *)
virtual void set_ImpactParameter(const float)
virtual void set_EvtSequence(const int)
set Event Number
virtual void identify(std::ostream &os=std::cout) const
virtual void set_EventPlaneAngle(const float)
PHG4HeadReco(const std::string &name="PHG4HeadReco")
Definition: PHG4HeadReco.cc:20
int Init(PHCompositeNode *topNode)
Definition: PHG4HeadReco.cc:26
int process_event(PHCompositeNode *topNode)
Definition: PHG4HeadReco.cc:59
PHNode * findFirst(const std::string &, const std::string &)
#define PHWHERE
Definition: phool.h:23