33 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
34 m_g4true = findNode::getClass<PHG4TruthInfoContainer>(topNode,
"G4TruthInfo");
40 static unsigned int n_evt = 0;
41 cout <<
"AnaSimHit: Event " << ++n_evt <<
"\n";
52 PrintHits(
"H1T", hv_h1t.get());
53 PrintHits(
"H1B", hv_h1b.get());
54 PrintHits(
"H2T", hv_h2t.get());
55 PrintHits(
"H2B", hv_h2b.get());
56 PrintHits(
"H3T", hv_h3t.get());
57 PrintHits(
"H3B", hv_h3b.get());
58 PrintHits(
"H4T", hv_h4t.get());
59 PrintHits(
"H4B", hv_h4b.get());
63 CountHits(hv_h1t.get(), n_h1_pri, n_h1_sec);
64 CountHits(hv_h1b.get(), n_h1_pri, n_h1_sec);
67 CountHits(hv_h2t.get(), n_h2_pri, n_h2_sec);
68 CountHits(hv_h2b.get(), n_h2_pri, n_h2_sec);
71 CountHits(hv_h3t.get(), n_h3_pri, n_h3_sec);
72 CountHits(hv_h3b.get(), n_h3_pri, n_h3_sec);
75 CountHits(hv_h4t.get(), n_h4_pri, n_h4_sec);
76 CountHits(hv_h4b.get(), n_h4_pri, n_h4_sec);
77 cout <<
" Primary : " << n_h1_pri <<
" " << n_h2_pri <<
" " << n_h3_pri <<
" " << n_h4_pri <<
"\n"
78 <<
" Secondary: " << n_h1_sec <<
" " << n_h2_sec <<
" " << n_h3_sec <<
" " << n_h4_sec <<
"\n";
88 int AnaSimHit::GetParticleID(
const int track_id)
94 cout <<
"!!ERROR!! AnaSimHit::GetParticleID(): Failed for track_id = " << track_id <<
". Abort.\n";
98 void AnaSimHit::PrintHits(
const std::string name,
SQHitVector* hv, std::ostream& os)
102 int trk_id = (*it)->get_track_id();
103 os <<
" " << trk_id <<
":" << GetParticleID(trk_id);
108 void AnaSimHit::CountHits(
SQHitVector* hv,
int& n_pri,
int& n_sec)
111 if ((*it)->get_track_id() >= 0) n_pri++;
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
virtual int get_track_id() const
virtual int get_pid() const
Range GetParticleRange()
Get a range of iterators covering the entire container.
An SQ interface class to hold a list of SQHit objects.
std::vector< SQHit * >::const_iterator ConstIter
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
SQHitVector * FindHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of hits that are of the given detector (det_name).