22 #include <ktracker/SRecEvent.h>
33 , m_vec_rec_trk(nullptr)
39 , m_legacy_rec_container(true)
40 , m_do_evt_header(true)
41 , m_do_truthtrk_tagging(true)
42 , m_matching_threshold(0.75)
51 if (! m_evt )
delete m_evt;
52 if (! m_mcevt )
delete m_mcevt;
53 if (! m_vec_trk)
delete m_vec_trk;
54 if (! m_vec_dim)
delete m_vec_dim;
64 int ret = GetNodes(topNode);
66 ret = MakeNodes(topNode);
75 if (genevtmap->
size() != 1) {
76 cout <<
"TruthNodeMaker::process_event(): size != 1 unexpectedly." << endl;
82 cout <<
"No PHHepMCGenEvent object." << endl;
85 HepMC::GenEvent *evt = genevt->
getEvent();
87 cout <<
"No HepMC::GenEvent object." << endl;
96 HepMC::GenEvent::particle_const_iterator it = evt->particles_begin();
98 for (
int iii = 0; iii < 4; iii++) {
100 const HepMC::GenParticle* par = *it;
101 const HepMC::FourVector * mom = &par->momentum();
103 lvec.SetPxPyPzE(mom->px(), mom->py(), mom->pz(), mom->e());
117 map<int, int> trkid_idx;
118 vector<int> vec_vtx_id;
122 if (abs(pid) != 13)
continue;
133 trkid_idx[trk_id] = m_vec_trk->
size();
135 vec_vtx_id.push_back(vtx_id);
141 unsigned int n_trk = m_vec_trk->
size();
142 for (
unsigned int i1 = 0; i1 < n_trk; i1++) {
145 for (
unsigned int i2 = 0; i2 < n_trk; i2++) {
148 if (vec_vtx_id[i1] != vec_vtx_id[i2])
continue;
164 map<int, vector<SQHit*> > trkid_hitvec;
165 int n_digihits = m_vec_hit->
size();
166 for(
int i = 0; i < n_digihits; ++i) {
170 if(detid >
nChamberPlanes || (detid >= 7 && detid <= 12))
continue;
173 if(trkid_idx.find(trkid) == trkid_idx.end())
continue;
175 if(trkid_hitvec.find(trkid) == trkid_hitvec.end()) {
176 trkid_hitvec[trkid] = vector<SQHit*>();
178 trkid_hitvec[trkid].push_back(hit);
182 for(
unsigned int i = 0; i < n_trk; ++i) {
186 if(trkid_hitvec.find(trkid) == trkid_hitvec.end()) {
194 int detIDs_st1[6] = {3, 4, 2, 5, 1, 6};
195 if(FindHitAtStation(detIDs_st1, trkid, trkid_hitvec[trkid], pos, mom)) {
200 int detIDs_st3p[6] = {21, 22, 20, 23, 19, 24};
201 int detIDs_st3m[6] = {27, 28, 26, 29, 25, 30};
202 if(FindHitAtStation(detIDs_st3p, trkid, trkid_hitvec[trkid], pos, mom) ||
203 FindHitAtStation(detIDs_st3m, trkid, trkid_hitvec[trkid], pos, mom)) {
214 map<int, vector<int> > rtrkid_hitidvec;
215 if(m_legacy_rec_container) {
217 for(
int i = 0; i < n_rtrks; i++) {
219 rtrkid_hitidvec[i] = vector<int>();
222 for(
int j = 0; j < n_rhits; ++j) {
223 rtrkid_hitidvec[i].push_back(recTrack.
getHitIndex(j));
226 sort(rtrkid_hitidvec[i].begin(), rtrkid_hitidvec[i].end());
229 n_rtrks = m_vec_rec_trk->
size();
230 for(
int i = 0; i < n_rtrks; ++i) {
232 rtrkid_hitidvec[i] = vector<int>();
235 for(
int j = 0; j < n_rhits; ++j) {
236 rtrkid_hitidvec[i].push_back(recTrack->
getHitIndex(j));
239 sort(rtrkid_hitidvec[i].begin(), rtrkid_hitidvec[i].end());
245 map<int, vector<int> > ttrkid_hitidvec;
246 for(
auto it = trkid_hitvec.begin(); it != trkid_hitvec.end(); ++it) {
247 ttrkid_hitidvec[it->first] = vector<int>();
248 for(
auto jt = it->second.begin(); jt != it->second.end(); ++jt) {
249 ttrkid_hitidvec[it->first].push_back((*jt)->get_hit_id());
251 sort(ttrkid_hitidvec[it->first].begin(), ttrkid_hitidvec[it->first].end());
255 for(
unsigned int i = 0; i < n_trk; ++i) {
260 unsigned int n_match = 0;
261 for(
auto it = rtrkid_hitidvec.begin(); it != rtrkid_hitidvec.end(); ++it) {
262 int n_match_new = FindCommonHitIDs(ttrkid_hitidvec[ttrkid], it->second);
263 if(n_match < n_match_new) {
264 n_match = n_match_new;
269 if(rtrkid >= 0 &&
double(n_match)/
double(ttrkid_hitidvec[ttrkid].size()) > m_matching_threshold) {
284 g4true = findNode::getClass<PHG4TruthInfoContainer>(topNode,
"G4TruthInfo");
286 cerr <<
Name() <<
": failed locating G4TruthInfo, abort" << endl;
290 m_vec_hit = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
292 cerr <<
Name() <<
": failed locating the digitized hit vector, abort" << endl;
296 genevtmap = findNode::getClass<PHHepMCGenEventMap>(topNode,
"PHHepMCGenEventMap");
298 m_do_evt_header =
false;
299 cout <<
Name() <<
": failed locating HepMCGenEvent, event process info will be missing" << endl;
306 m_g4hc[i] = findNode::getClass<PHG4HitContainer>(topNode, g4hitNodeName);
309 if(m_legacy_rec_container) {
310 m_rec_evt = findNode::getClass<SRecEvent>(topNode,
"SRecEvent");
312 m_do_truthtrk_tagging =
false;
313 cout <<
Name() <<
": failed locating rec event, no truth track tagging." << endl;
316 m_vec_rec_trk = findNode::getClass<SQTrackVector>(topNode,
"SQRecTrackVector");
318 m_do_truthtrk_tagging =
false;
319 cout <<
Name() <<
": failed locating rec track vector, no truth track tagging." << endl;
331 cout <<
"No DST node!?" << endl;
335 m_evt = findNode::getClass<SQEvent>(topNode,
"SQEvent");
341 m_mcevt = findNode::getClass<SQMCEvent>(topNode,
"SQMCEvent");
347 m_vec_trk = findNode::getClass<SQTrackVector>(topNode,
"SQTruthTrackVector");
353 m_vec_dim = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
362 bool TruthNodeMaker::FindHitAtStation(
int target_detIDs[],
int trkid,
const vector<SQHit*>& hitvec, TVector3& pos, TLorentzVector& mom)
364 for(
int i = 0; i < 6; ++i) {
366 for(
unsigned int j = 0; j < hitvec.size(); ++j) {
367 if(hitvec[j]->get_detector_id() == target_detIDs[i]) {
368 pos.SetXYZ(hitvec[j]->get_truth_x(), hitvec[j]->get_truth_y(), hitvec[j]->get_truth_z());
369 mom.SetXYZM(hitvec[j]->get_truth_px(), hitvec[j]->get_truth_py(), hitvec[j]->get_truth_pz(),
M_MU);
375 if(!m_g4hc[target_detIDs[i]])
continue;
389 int TruthNodeMaker::FindCommonHitIDs(vector<int>& hitidvec1, vector<int>& hitidvec2)
392 auto iter = hitidvec1.begin();
393 auto jter = hitidvec2.begin();
396 while(iter != hitidvec1.end() && jter != hitidvec2.end()) {
400 if(!(*jter < *iter)) {
virtual const std::string Name() const
Returns the name of this module.
User interface class about the geometry of detector planes.
static GeomSvc * instance()
singlton instance
std::string getDetectorName(const int &detectorID) const
PHBoolean addNode(PHNode *)
Map::const_iterator ConstIterator
std::pair< ConstIterator, ConstIterator > ConstRange
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 int get_trkid() 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_e() 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
std::map< int, PHHepMCGenEvent * >::iterator Iter
ConstIter begin() const
iterator from lowest ID to highest, i.e. background to signal
virtual HepMC::GenEvent * getEvent()
virtual void push_back(const SQDimuon *dim)=0
void set_dimuon_id(const int a)
void set_track_id_pos(const int a)
void set_mom_pos(const TLorentzVector a)
void set_mom_neg(const TLorentzVector a)
void set_track_id_neg(const int a)
void set_pos(const TVector3 a)
void set_mom(const TLorentzVector a)
virtual void set_spill_id(const int a)=0
virtual void set_event_id(const int a)=0
virtual void set_run_id(const int a)=0
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 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.
virtual void set_particle_momentum(const int i, const TLorentzVector a)=0
virtual void set_particle_id(const int i, const int a)=0
virtual void set_process_id(const int a)=0
virtual void push_back(const SQTrack *trk)=0
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
virtual void set_pos_vtx(const TVector3 a)
virtual void set_charge(const int a)
virtual void set_track_id(const int a)
virtual void set_mom_vtx(const TLorentzVector a)
An SQ interface class to hold one true or reconstructed track.
virtual int get_track_id() const =0
Return the track ID, which is unique per event(?).
virtual TVector3 get_pos_vtx() const =0
Return the track position at vertex.
virtual int get_charge() const =0
Return the charge, i.e. +1 or -1.
virtual void set_num_hits(const int a)=0
virtual TLorentzVector get_mom_vtx() const =0
Return the track momentum at vertex.
virtual void set_pos_st1(const TVector3 a)=0
virtual void set_pos_st3(const TVector3 a)=0
virtual void set_mom_st1(const TLorentzVector a)=0
virtual void set_rec_track_id(const int a)=0
virtual void set_mom_st3(const TLorentzVector a)=0
Int_t getNTracks()
Get tracks.
SRecTrack & getTrack(Int_t i)
Int_t getHitIndex(Int_t i)
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
virtual ~TruthNodeMaker()
int Init(PHCompositeNode *topNode)