27 #include <TClonesArray.h>
35 #include <boost/lexical_cast.hpp>
38 #define LogInfo(exp) std::cout<<"INFO: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
39 #define LogDebug(exp) std::cout<<"DEBUG: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
40 #define LogError(exp) std::cout<<"ERROR: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
41 #define LogWarning(exp) std::cout<<"WARNING: "<<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
49 _g4truth_container(nullptr)
73 int ret = GetNodes(topNode);
82 std::cout <<
"Entering TruthEval::process_event: " << _event << std::endl;
86 map<int, float> _m_track_edep_coil;
87 map<int, float> _m_track_path_coil;
89 map<int, float> _m_track_edep_wire;
90 map<int, float> _m_track_path_wire;
92 for(
auto iter=_g4hit_coil->
getHits().first; iter!=_g4hit_coil->
getHits().second; ++iter) {
100 float x0 = hit->
get_x(0);
101 float x1 = hit->
get_x(1);
102 float y0 = hit->
get_y(0);
103 float y1 = hit->
get_y(1);
104 float z0 = hit->
get_z(0);
105 float z1 = hit->
get_z(1);
113 auto iter_edep = _m_track_edep_coil.find(track_id);
114 if( iter_edep != _m_track_edep_coil.end()) {
115 iter_edep->second += edep;
117 _m_track_edep_coil.insert(multimap<int, float>::value_type(track_id, edep));
120 auto iter_path = _m_track_path_coil.find(track_id);
121 if( iter_path != _m_track_path_coil.end()) {
122 iter_path->second += path;
124 _m_track_path_coil.insert(multimap<int, float>::value_type(track_id, path));
128 set<unsigned int> wire_ids = {10, 11, 20, 21, 30, 31, 110, 111, 120, 121, 130, 131};
129 unsigned int layer_id = hit->
get_layer();
130 if(wire_ids.find(layer_id)!=wire_ids.end()) {
131 auto iter_edep = _m_track_edep_wire.find(track_id);
132 if( iter_edep != _m_track_edep_wire.end()) {
133 iter_edep->second += edep;
135 _m_track_edep_wire.insert(multimap<int, float>::value_type(track_id, edep));
138 auto iter_path = _m_track_path_wire.find(track_id);
139 if( iter_path != _m_track_path_wire.end()) {
140 iter_path->second += path;
142 _m_track_path_wire.insert(multimap<int, float>::value_type(track_id, path));
147 cout << __FILE__ <<
": " << __LINE__ << endl;
155 <<
"_m_track_path_coil: "
157 <<
" -> " << _m_track_edep_coil[track_id] <<
"}"
161 <<
"_m_track_path_coil: "
163 <<
" -> " << _m_track_path_coil[track_id] <<
"}"
170 for(
auto iter = range.first; iter!= range.second; ++iter) {
179 float e = particle->
get_e();
180 float px = particle->
get_px();
181 float py = particle->
get_py();
182 float pz = particle->
get_pz();
183 TVector3 mom(px,py,pz);
185 track.
eta = mom.Eta();
189 float mass = sqrt(e*e-p*p);
226 auto iter_edep = _m_track_edep_coil.find(track_id);
227 if(iter_edep != _m_track_edep_coil.end()) {
232 auto iter_path = _m_track_path_coil.find(track_id);
233 if(iter_path != _m_track_path_coil.end()) {
240 auto iter_edep = _m_track_edep_wire.find(track_id);
241 if(iter_edep != _m_track_edep_wire.end()) {
246 auto iter_path = _m_track_path_wire.find(track_id);
247 if(iter_path != _m_track_path_wire.end()) {
252 new ((*_tca_truthtracks)[iarr++])
TruthTrack(track);
258 std::cout <<
"Leaving TruthEval::process_event: " << _event << std::endl;
266 std::cout <<
"TruthEval::End" << std::endl;
280 if (!_tca_truthtracks)
281 _tca_truthtracks =
new TClonesArray(
"TruthTrack");
283 _tout =
new TTree(
"T",
"TruthEval");
284 _tout->Branch(
"TruthParticle", _tca_truthtracks);
287 _tout1 =
new TTree(
"T1",
"RunLevel");
288 _tout1->Branch(
"total_edep", &_total_edep,
"total_edep/F");
294 _tca_truthtracks->Clear();
300 _g4truth_container = findNode::getClass<PHG4TruthInfoContainer>(topNode,
"G4TruthInfo");
301 if (!_g4truth_container) {
302 cerr <<
PHWHERE <<
" ERROR: Can't find node G4TruthInfo" << endl;
306 _g4hit_coil = findNode::getClass<PHG4HitContainer>(topNode,
"G4HIT_Coil");
308 cerr <<
PHWHERE <<
" ERROR: Can't find node G4HIT_Coil" << endl;
int verbosity
The verbosity level. 0 means not verbose at all.
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
virtual int Verbosity() const
Gets the verbosity of this module.
ConstRange getHits(const unsigned int detid) const
return all hits matching a given detid
virtual unsigned int get_layer() const
virtual float get_z(const int i) const
virtual float get_edep() const
virtual float get_y(const int i) const
virtual float get_x(const int i) const
virtual void identify(std::ostream &os=std::cout) const
virtual int get_trkid() const
virtual int get_track_id() const
virtual int get_pid() const
virtual int get_parent_id() const
virtual double get_px() const
virtual int get_vtx_id() const
virtual double get_py() const
virtual double get_e() const
virtual double get_pz() const
Range GetParticleRange()
Get a range of iterators covering the entire container.
PHG4VtxPoint * GetVtx(const int vtxid)
virtual double get_y() const
virtual double get_x() const
virtual double get_z() const
virtual double get_t() const
static PHTFileServer & get(void)
return reference to class singleton
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
int InitRun(PHCompositeNode *topNode)
TruthEval(const std::string &name="TruthEval", const std::string &out="eval.root")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
float edep_coil
0 : Target, 1: Coil, 9999: other