Class Reference for E1039 Core & Analysis Software
PHG4HitReadBack.cc
Go to the documentation of this file.
1 #include "PHG4HitReadBack.h"
2 #include "PHG4Hit.h"
3 #include "PHG4HitContainer.h"
4 
6 #include <phool/getClass.h>
7 
8 #include <phool/PHNodeIterator.h>
9 #include <iostream>
10 
11 using namespace std;
12 
13 PHG4HitReadBack::PHG4HitReadBack(const string &name): SubsysReco(name)
14 {
15  return;
16 }
17 
18 int
20 {
21  return 0;
22 }
23 
24 int
26 {
27  PHG4HitContainer *phc = findNode::getClass<PHG4HitContainer>(topNode,"PHG4Hit");
28  if (!phc)
29  {
30  cout << "No PHG4Hit found" << endl;
32  }
33  phc->identify();
34  std::pair<PHG4HitContainer::ConstIterator,PHG4HitContainer::ConstIterator> hititer = phc->getHits(1);
36  begin = hititer.first;
37  end = hititer.second;
38  for (it=begin; it != end; ++it)
39  {
40  cout << "key: 0x" << hex << it->first << dec << endl;
41  cout << "x: " << it->second->get_x(0) << endl;
42  }
43  cout << "detid: 2" << endl;
44  hititer = phc->getHits(2);
45  begin = hititer.first;
46  end = hititer.second;
47  for (it=begin; it != end; ++it)
48  {
49  cout << "key: 0x" << hex << it->first << dec << endl;
50  cout << "x: " << it->second->get_x(0) << endl;
51  }
52  cout << "detid: 3" << endl;
53  hititer = phc->getHits(3);
54  begin = hititer.first;
55  end = hititer.second;
56  for (it=begin; it != end; ++it)
57  {
58  cout << "key: 0x" << hex << it->first << dec << endl;
59  cout << "x: " << it->second->get_x(0) << endl;
60  }
61  // phc = findNode::getClass<PHG4HitContainer>(topNode,"PHG4Hit2");
62  // if (!phc)
63  // {
64  // cout << "No PHG4Hit found" << endl;
65  // return ABORTEVENT;
66  // }
67  // phc->identify();
69 }
Map::const_iterator ConstIterator
void identify(std::ostream &os=std::cout) const
ConstRange getHits(const unsigned int detid) const
return all hits matching a given detid
int process_event(PHCompositeNode *topNode)
PHG4HitReadBack(const std::string &name="PHG4HITREADBACK")
int InitRun(PHCompositeNode *topNode)