40 dstNode->
addNode(PHObjectIONode);
44 dstNode->
addNode(PHObjectIONode);
52 PHG4InEvent *inEvent = findNode::getClass<PHG4InEvent>(topNode,
"PHG4INEVENT");
55 cout <<
"no PHG4INEVENT node found" << endl;
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)
64 if ((*vtxiter).first > 0xFFFF)
66 cout <<
"id of vertex " << (*vtxiter).first <<
" exceeds max val of " << 0xFFFF << endl;
69 svtxvec.push_back((*vtxiter).first);
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)
82 if ((*particle_iter).first > 0xFFFF)
84 cout <<
"id of vertex " << (*particle_iter).first <<
" exceeds max val of " << 0xFFFF << endl;
87 spartvec.push_back((*particle_iter).first);
88 if (abs((*particle_iter->second).get_pid()) > 0xFFFF)
90 cout <<
"pdg code of particle " << (*particle_iter->second).get_pid() <<
" exceeds max val of " << 0xFFFF << endl;
93 spartvec.push_back((*particle_iter->second).get_pid());
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 * particlearray
std::pair< std::multimap< int, PHG4Particle * >::const_iterator, std::multimap< int, PHG4Particle * >::const_iterator > GetParticles(const int vtxid) const
std::pair< std::map< int, PHG4VtxPoint * >::const_iterator, std::map< int, PHG4VtxPoint * >::const_iterator > GetVertices() const
PHNode * findFirst(const std::string &, const std::string &)
static short FloatToShortBits(const float rval)
void set_val(const std::vector< short > &vec)