48 #include <boost/lexical_cast.hpp>
50 #define LogDebug(exp) std::cout<<"DEBUG: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
51 #define LogError(exp) std::cout<<"ERROR: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
52 #define LogWarning(exp) std::cout<<"WARNING: "<<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
58 _hit_container_type(
"Vector"),
60 _event_header(nullptr),
63 _out_name(
"pattern_db.root")
78 int ret = GetNodes(topNode);
98 std::cout <<
"Entering PatternDBGen::TruthEval: " << _event << std::endl;
100 PHG4HitContainer *D1X_hits = findNode::getClass<PHG4HitContainer>(topNode,
"G4HIT_D0X");
102 D1X_hits = findNode::getClass<PHG4HitContainer>(topNode,
"G4HIT_D1X");
107 cout <<
Name() <<
" Could not locate g4 hit node " <<
"G4HIT_D0X or G4HIT_D1X" << endl;
112 std::map<int, int> parID_nhits_dc;
113 std::map<int, int> parID_nhits_hodo;
114 std::map<int, int> parID_nhits_prop;
116 std::map<int, std::map<int, int> > parID_detid_elmid;
118 typedef std::tuple<int, int> ParDetPair;
119 std::map<ParDetPair, int> parID_detID_ihit;
121 std::map<int, int> hitID_ihit;
124 for(
int ihit=0; ihit<_hit_vector->
size(); ++ihit) {
125 SQHit *hit = _hit_vector->
at(ihit);
135 parID_detID_ihit[std::make_tuple(track_id, det_id)] = ihit;
137 auto detid_elmid_iter = parID_detid_elmid.find(track_id);
138 if(detid_elmid_iter != parID_detid_elmid.end()) {
139 detid_elmid_iter->second.insert(std::pair<int, int>(det_id, hit->
get_element_id()));
141 std::map<int, int> detid_elmid;
142 detid_elmid.insert(std::pair<int, int>(det_id, hit->
get_element_id()));
143 parID_detid_elmid[track_id] = detid_elmid;
147 if(parID_nhits_dc.find(track_id)!=parID_nhits_dc.end())
148 parID_nhits_dc[track_id] = parID_nhits_dc[track_id]+1;
150 parID_nhits_dc[track_id] = 1;
153 if(parID_nhits_hodo.find(track_id)!=parID_nhits_hodo.end())
154 parID_nhits_hodo[track_id] = parID_nhits_hodo[track_id]+1;
156 parID_nhits_hodo[track_id] = 1;
159 if(parID_nhits_prop.find(track_id)!=parID_nhits_prop.end())
160 parID_nhits_prop[track_id] = parID_nhits_prop[track_id]+1;
162 parID_nhits_prop[track_id] = 1;
177 pid[n_tracks] = par->
get_pid();
181 gvx[n_tracks] = vtx->
get_x();
182 gvy[n_tracks] = vtx->
get_y();
183 gvz[n_tracks] = vtx->
get_z();
186 gpx[n_tracks] = par->
get_px();
187 gpy[n_tracks] = par->
get_py();
188 gpz[n_tracks] = par->
get_pz();
189 gpt[n_tracks] = mom.Pt();
190 geta[n_tracks] = mom.Eta();
191 gphi[n_tracks] = mom.Phi();
197 for(
int det_id=7; det_id<=12; ++det_id) {
198 auto iter = parID_detID_ihit.find(std::make_tuple(parID, det_id));
199 if(iter != parID_detID_ihit.end()) {
203 SQHit *hit = _hit_vector->
at(iter->second);
207 if(hit and D1X_hits) {
213 gx_st1[n_tracks] = g4hit->
get_x(0);
214 gy_st1[n_tracks] = g4hit->
get_y(0);
215 gz_st1[n_tracks] = g4hit->
get_z(0);
217 gpx_st1[n_tracks] = g4hit->
get_px(0)/1000.;
218 gpy_st1[n_tracks] = g4hit->
get_py(0)/1000.;
219 gpz_st1[n_tracks] = g4hit->
get_pz(0)/1000.;
227 parID_nhits_dc[parID] +
228 parID_nhits_hodo[parID] +
229 parID_nhits_prop[parID];
231 gndc[n_tracks] = parID_nhits_dc[parID];
232 gnhodo[n_tracks] = parID_nhits_hodo[parID];
233 gnprop[n_tracks] = parID_nhits_prop[parID];
235 for(
auto detid_elmid : parID_detid_elmid[parID]) {
236 int detid = detid_elmid.first;
237 int elmid = detid_elmid.second;
242 gelmid[n_tracks][detid] = elmid;
248 if(n_tracks>=1000)
break;
255 std::cout <<
"Leaving PatternDBGen::TruthEval: " << _event << std::endl;
262 std::cout <<
"PatternDBGen::End" << std::endl;
265 _tout_truth->Write();
273 _tout_truth =
new TTree(
"T",
"Truth Eval");
279 _tout_truth->Branch(
"n_tracks", &n_tracks,
"n_tracks/I");
280 _tout_truth->Branch(
"pid", pid,
"pid[n_tracks]/I");
297 _tout_truth->Branch(
"gndc", gndc,
"gndc[n_tracks]/I");
300 _tout_truth->Branch(
"gelmid", gelmid,
"gelmid[n_tracks][55]/I");
306 run_id = std::numeric_limits<int>::max();
307 spill_id = std::numeric_limits<int>::max();
308 target_pos = std::numeric_limits<float>::max();
309 event_id = std::numeric_limits<int>::max();
312 for(
int i=0; i<1000; ++i) {
313 pid[i] = std::numeric_limits<int>::max();
314 gvx[i] = std::numeric_limits<float>::max();
315 gvy[i] = std::numeric_limits<float>::max();
316 gvz[i] = std::numeric_limits<float>::max();
317 gpx[i] = std::numeric_limits<float>::max();
318 gpy[i] = std::numeric_limits<float>::max();
319 gpz[i] = std::numeric_limits<float>::max();
320 gpt[i] = std::numeric_limits<float>::max();
321 geta[i] = std::numeric_limits<float>::max();
322 gphi[i] = std::numeric_limits<float>::max();
323 gnhits[i] = std::numeric_limits<int>::max();
324 gx_st1[i] = std::numeric_limits<float>::max();
325 gy_st1[i] = std::numeric_limits<float>::max();
326 gz_st1[i] = std::numeric_limits<float>::max();
327 gpx_st1[i] = std::numeric_limits<float>::max();
328 gpy_st1[i] = std::numeric_limits<float>::max();
329 gpz_st1[i] = std::numeric_limits<float>::max();
330 gndc[i] = std::numeric_limits<int>::max();
331 gnhodo[i] = std::numeric_limits<int>::max();
332 gnprop[i] = std::numeric_limits<int>::max();
334 for(
int j=0; j<55; ++j) {
335 gelmid[i][j] = std::numeric_limits<int>::max();
344 if(_hit_container_type.find(
"Map") != std::string::npos) {
345 _hit_map = findNode::getClass<SQHitMap>(topNode,
"SQHitMap");
352 if(_hit_container_type.find(
"Vector") != std::string::npos) {
353 _hit_vector = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
360 _truth = findNode::getClass<PHG4TruthInfoContainer>(topNode,
"G4TruthInfo");
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
@ VERBOSITY_A_LOT
Output a lot of messages.
virtual int Verbosity() const
Gets the verbosity of this module.
static GeomSvc * instance()
singlton instance
virtual float get_py(const int i) const
virtual float get_z(const int i) const
virtual float get_pz(const int i) const
virtual float get_px(const int i) 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_track_id() const
virtual int get_pid() const
virtual double get_px() const
virtual int get_vtx_id() const
virtual double get_py() const
virtual double get_pz() const
Range GetPrimaryParticleRange()
PHG4VtxPoint * GetVtx(const int vtxid)
virtual double get_y() const
virtual double get_x() const
virtual double get_z() 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 End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
PatternDBGen(const std::string &name="PatternDBGen")
virtual const SQHit * at(const size_t idkey) const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
virtual void identify(std::ostream &os=std::cout) const
virtual PHG4HitDefs::keytype get_g4hit_id() const
Return the Geant-hit ID associated with this hit.
virtual short get_element_id() const
Return the element ID of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.