Class Reference for E1039 Core & Analysis Software
PHG4InEventCompress.cc
Go to the documentation of this file.
1 #include "PHG4InEventCompress.h"
2 #include "PHG4InEvent.h"
3 #include "PHG4VtxPoint.h"
4 #include "PHG4Particle.h"
5 
9 
11 #include <phool/getClass.h>
12 
13 #include <phool/PHCompositeNode.h>
14 #include <phool/PHIODataNode.h>
15 #include <phool/phool.h>
16 
17 #include <cstdlib>
18 #include <iostream>
19 #include <vector>
20 
21 using namespace std;
22 
23 PHG4InEventCompress::PHG4InEventCompress(const std::string &name):
24  SubsysReco(name),
25  vtxarray(NULL),
26  particlearray(NULL)
27 {}
28 
29 int
31 {
32  PHNodeIterator iter(topNode);
33  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
34 
35 
36  PHIODataNode<PHObject> *PHObjectIONode;
37 
39  PHObjectIONode = new PHIODataNode<PHObject>(vtxarray, "PHG4Vtx_VarArray", "PHObject");
40  dstNode->addNode(PHObjectIONode);
41 
43  PHObjectIONode = new PHIODataNode<PHObject>(particlearray, "PHG4Particle_VarArray", "PHObject");
44  dstNode->addNode(PHObjectIONode);
45 
47 }
48 
49 int
51 {
52  PHG4InEvent *inEvent = findNode::getClass<PHG4InEvent>(topNode,"PHG4INEVENT");
53  if (!inEvent)
54  {
55  cout << "no PHG4INEVENT node found" << endl;
57  }
58 
59  map<int, PHG4VtxPoint *>::const_iterator vtxiter;
60  std::pair< std::map<int, PHG4VtxPoint *>::const_iterator, std::map<int, PHG4VtxPoint *>::const_iterator > vtxbegin_end = inEvent->GetVertices();
61  vector<short> svtxvec;
62  for (vtxiter = vtxbegin_end.first; vtxiter != vtxbegin_end.second; ++vtxiter)
63  {
64  if ((*vtxiter).first > 0xFFFF)
65  {
66  cout << "id of vertex " << (*vtxiter).first << " exceeds max val of " << 0xFFFF << endl;
67  exit(1);
68  }
69  svtxvec.push_back((*vtxiter).first);
70  svtxvec.push_back(VariableArrayUtils::FloatToShortBits((*vtxiter->second).get_x()));
71  svtxvec.push_back(VariableArrayUtils::FloatToShortBits((*vtxiter->second).get_y()));
72  svtxvec.push_back(VariableArrayUtils::FloatToShortBits((*vtxiter->second).get_z()));
73  svtxvec.push_back(VariableArrayUtils::FloatToShortBits((*vtxiter->second).get_t()));
74  }
75  vtxarray->set_val(svtxvec);
76 
77  pair<multimap<int, PHG4Particle *>::const_iterator, multimap<int, PHG4Particle *>::const_iterator > particlebegin_end = inEvent->GetParticles();
78  multimap<int,PHG4Particle *>::const_iterator particle_iter;
79  vector<short> spartvec;
80  for (particle_iter = particlebegin_end.first; particle_iter != particlebegin_end.second; ++particle_iter)
81  {
82  if ((*particle_iter).first > 0xFFFF)
83  {
84  cout << "id of vertex " << (*particle_iter).first << " exceeds max val of " << 0xFFFF << endl;
85  exit(1);
86  }
87  spartvec.push_back((*particle_iter).first);
88  if (abs((*particle_iter->second).get_pid()) > 0xFFFF)
89  {
90  cout << "pdg code of particle " << (*particle_iter->second).get_pid() << " exceeds max val of " << 0xFFFF << endl;
91  exit(1);
92  }
93  spartvec.push_back((*particle_iter->second).get_pid());
94 
95  spartvec.push_back(VariableArrayUtils::FloatToShortBits((*particle_iter->second).get_px()));
96  spartvec.push_back(VariableArrayUtils::FloatToShortBits((*particle_iter->second).get_py()));
97  spartvec.push_back(VariableArrayUtils::FloatToShortBits((*particle_iter->second).get_pz()));
98  }
99  particlearray->set_val(spartvec);
100  // inEvent->identify();
102 }
103 
104 int
106 {
108 }
#define NULL
Definition: Pdb.h:9
PHBoolean addNode(PHNode *)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
PHG4InEventCompress(const std::string &name="PHG4InEventCompress")
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
VariableArray * vtxarray
VariableArray * particlearray
std::pair< std::multimap< int, PHG4Particle * >::const_iterator, std::multimap< int, PHG4Particle * >::const_iterator > GetParticles(const int vtxid) const
Definition: PHG4InEvent.cc:113
std::pair< std::map< int, PHG4VtxPoint * >::const_iterator, std::map< int, PHG4VtxPoint * >::const_iterator > GetVertices() const
Definition: PHG4InEvent.cc:105
PHNode * findFirst(const std::string &, const std::string &)
static short FloatToShortBits(const float rval)
void set_val(const std::vector< short > &vec)