Class Reference for E1039 Core & Analysis Software
DoEmbedding.cc
Go to the documentation of this file.
1 #include <fstream>
2 #include <iomanip>
3 #include <TFile.h>
4 #include <TTree.h>
6 #include <phool/PHIODataNode.h>
7 #include <phool/getClass.h>
14 #include "DoEmbedding.h"
15 using namespace std;
16 
17 DoEmbedding::DoEmbedding(const std::string name)
18  : SubsysReco(name)
19  , m_overwrite_rf_info(true)
20  , m_hit_id_shift(10000)
21  , m_trk_id_shift(10000)
22  , m_dim_id_shift(10000)
23  , m_idx_emb_file(0)
24  , m_idx_emb_evt (0)
25  , m_emb_data_has_sim_evt(false)
26  , m_emb_data_has_sim_trk(false)
27  , m_emb_data_has_sim_dim(false)
28  , m_file_emb(0)
29  , m_tree_emb(0)
30  , m_emb_sqevt (0)
31  , m_emb_sqmcevt (0)
32  , m_emb_sqvec_hit(0)
33  , m_emb_sqvec_trk(0)
34  , m_emb_sqvec_dim(0)
35 {
36  ;
37 }
38 
40 {
41  if (m_emb_sqevt ) delete m_emb_sqevt ;
42  if (m_emb_sqmcevt ) delete m_emb_sqmcevt ;
43  if (m_emb_sqvec_hit) delete m_emb_sqvec_hit;
44  if (m_emb_sqvec_trk) delete m_emb_sqvec_trk;
45  if (m_emb_sqvec_dim) delete m_emb_sqvec_dim;
46 }
47 
49 {
51 }
52 
54 {
55  mi_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
56  mi_vec_hit = findNode::getClass<SQHitVector >(topNode, "SQHitVector");
57  if (!mi_evt || !mi_vec_hit) {
58  cout << PHWHERE << ": Cannot find SQEvent and/or SQHitVector." << endl;
60  }
61 
62  PHNodeIterator iter(topNode);
63  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
64  mi_sim_evt = findNode::getClass<SQMCEvent>(topNode, "SQMCEvent");
65  if (! mi_sim_evt) {
66  mi_sim_evt = new SQMCEvent_v1();
67  dstNode->addNode(new PHIODataNode<PHObject>(mi_sim_evt, "SQMCEvent", "PHObject"));
68  }
69  mi_sim_vec_trk = findNode::getClass<SQTrackVector>(topNode, "SQTruthTrackVector");
70  if (! mi_sim_vec_trk) {
71  mi_sim_vec_trk = new SQTrackVector_v1();
72  dstNode->addNode(new PHIODataNode<PHObject>(mi_sim_vec_trk, "SQTruthTrackVector", "PHObject"));
73  }
74  mi_sim_vec_dim = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
75  if (! mi_sim_vec_dim) {
76  mi_sim_vec_dim = new SQDimuonVector_v1();
77  dstNode->addNode(new PHIODataNode<PHObject>(mi_sim_vec_dim, "SQTruthDimuonVector", "PHObject"));
78  }
79  mi_evt_emb = findNode::getClass<SQEvent>(topNode, "SQEventEmb");
80  if (! mi_evt_emb) {
81  mi_evt_emb = new SQEvent_v1();
82  dstNode->addNode(new PHIODataNode<PHObject>(mi_evt_emb, "SQEventEmb", "PHObject"));
83  }
84  mi_sim_evt_emb = findNode::getClass<SQMCEvent>(topNode, "SQMCEventEmb");
85  if (! mi_sim_evt_emb) {
86  mi_sim_evt_emb = new SQMCEvent_v1();
87  dstNode->addNode(new PHIODataNode<PHObject>(mi_sim_evt_emb, "SQMCEventEmb", "PHObject"));
88  }
89 
90  m_emb_sqevt = new SQEvent_v1();
91  m_emb_sqmcevt = new SQMCEvent_v1();
92  m_emb_sqvec_hit = new SQHitVector_v1();
93  m_emb_sqvec_trk = new SQTrackVector_v1();
94  m_emb_sqvec_dim = new SQDimuonVector_v1();
95 
97 }
98 
100 {
101  if (Verbosity() > 9) {
102  cout << "DoEmbedding::process_event(): Start.\n"
103  << " run " << m_emb_sqevt->get_run_id() << ", spill " << m_emb_sqevt->get_spill_id() << ", event " << m_emb_sqevt->get_event_id() << endl;
104  }
105 
106  if (! GetNextEmbEvent()) {
107  // No embedding data available. Do nothing.
109  }
110 
111  *mi_evt_emb = *m_emb_sqevt;
112  if (m_emb_data_has_sim_evt) *mi_sim_evt_emb = *m_emb_sqmcevt;
113 
114  if (m_overwrite_rf_info) {
115  mi_evt->set_qie_turn_id(m_emb_sqevt->get_qie_turn_id());
116  mi_evt->set_qie_rf_id (m_emb_sqevt->get_qie_rf_id ());
117  for (int ii = -16; ii <= 16; ii++) {
118  mi_evt->set_qie_rf_intensity(ii, m_emb_sqevt->get_qie_rf_intensity(ii));
119  }
120  }
121 
122  if (Verbosity() > 9) cout << " N of hits to be embedded: " << m_emb_sqvec_hit->size() << endl;
123  for (SQHitVector::Iter it = m_emb_sqvec_hit->begin(); it != m_emb_sqvec_hit->end(); it++) {
124  SQHit* hit_emb = *it;
125  hit_emb->set_hit_id (hit_emb->get_hit_id () + m_hit_id_shift);
126  hit_emb->set_track_id(hit_emb->get_track_id() + m_trk_id_shift);
127  mi_vec_hit->push_back(hit_emb);
128  }
129 
130  if (m_emb_data_has_sim_trk) {
131  if (Verbosity() > 9) cout << " N of tracks to be embedded: " << m_emb_sqvec_trk->size() << endl;
132  for (SQTrackVector::Iter it = m_emb_sqvec_trk->begin(); it != m_emb_sqvec_trk->end(); it++) {
133  SQTrack* trk_emb = *it;
134  trk_emb->set_track_id(trk_emb->get_track_id() + m_trk_id_shift);
135  mi_sim_vec_trk->push_back(trk_emb);
136  }
137  }
138 
139  if (m_emb_data_has_sim_dim) {
140  if (Verbosity() > 9) cout << " N of dimuons to be embedded: " << m_emb_sqvec_dim->size() << endl;
141  for (SQDimuonVector::Iter it = m_emb_sqvec_dim->begin(); it != m_emb_sqvec_dim->end(); it++) {
142  SQDimuon* dim_emb = *it;
143  dim_emb->set_dimuon_id (dim_emb->get_dimuon_id () + m_dim_id_shift);
144  dim_emb->set_track_id_pos(dim_emb->get_track_id_pos() + m_trk_id_shift);
145  dim_emb->set_track_id_neg(dim_emb->get_track_id_neg() + m_trk_id_shift);
146  mi_sim_vec_dim->push_back(dim_emb);
147  }
148  }
149 
150  if (Verbosity() > 9) cout << "DoEmbedding::process_event(): End." << endl;
152 }
153 
155 {
158 }
159 
160 void DoEmbedding::AddEmbDataFile(const char* fn_root)
161 {
162  m_list_emb_file.push_back(fn_root);
163 }
164 
165 void DoEmbedding::AddEmbDataFiles(const char* fn_list)
166 {
167  ifstream ifs(fn_list);
168  string fn_root;
169  while (ifs >> fn_root) AddEmbDataFile(fn_root.c_str());
170  ifs.close();
171 }
172 
174 {
175  int num = 0;
176  for (vector<string>::iterator it = m_list_emb_file.begin(); it != m_list_emb_file.end(); it++) {
177  OpenEmbDataFile(it->c_str());
178  num += m_tree_emb->GetEntries();
180  }
181  return num;
182 }
183 
184 void DoEmbedding::OpenEmbDataFile(const char* fn_root)
185 {
186  m_file_emb = new TFile(fn_root);
187  if (! m_file_emb->IsOpen()) {
188  cout << "ERROR: Cannot open the embedding-data file, " << fn_root << ". Abort." << endl;
189  exit(1);
190  }
191  m_tree_emb = (TTree*)m_file_emb->Get("tree");
192  if (! m_tree_emb) {
193  cout << "ERROR: Cannot get the embedding-data tree. Abort." << endl;
194  exit(1);
195  }
196  if (Verbosity() > 0) {
197  cout << "DoEmbedding::OpenEmbDataFile(): " << fn_root << ", N = " << m_tree_emb->GetEntries() << "." << endl;
198  }
199 }
200 
202 {
203  if (! m_file_emb) return;
204  m_file_emb->Close();
205  m_file_emb = 0;
206  m_tree_emb = 0;
207 }
208 
210 {
211  if (! m_file_emb) { // Need to open an embedding-data file
212  if (m_idx_emb_file >= m_list_emb_file.size()) return false; // No file available.
213  string fn_root = m_list_emb_file[m_idx_emb_file];
214  OpenEmbDataFile(fn_root.c_str());
215  m_tree_emb->SetBranchAddress("SQEvent" , &m_emb_sqevt );
216  m_tree_emb->SetBranchAddress("SQHitVector", &m_emb_sqvec_hit);
217  m_emb_data_has_sim_evt = (m_tree_emb->FindBranch("SQMCEvent" ) != 0);
218  m_emb_data_has_sim_trk = (m_tree_emb->FindBranch("SQTruthTrackVector" ) != 0);
219  m_emb_data_has_sim_dim = (m_tree_emb->FindBranch("SQTruthDimuonVector") != 0);
220  if (m_emb_data_has_sim_evt) m_tree_emb->SetBranchAddress("SQMCEvent" , &m_emb_sqmcevt );
221  if (m_emb_data_has_sim_trk) m_tree_emb->SetBranchAddress("SQTruthTrackVector" , &m_emb_sqvec_trk);
222  if (m_emb_data_has_sim_dim) m_tree_emb->SetBranchAddress("SQTruthDimuonVector", &m_emb_sqvec_dim);
223 
224  m_idx_emb_file++;
225  m_idx_emb_evt = 0;
226  }
227 
228  if (m_idx_emb_evt >= m_tree_emb->GetEntries()) { // No event available.
230  return GetNextEmbEvent();
231  }
232 
233  m_tree_emb->GetEntry(m_idx_emb_evt++);
234 
235  return true;
236 }
int process_event(PHCompositeNode *topNode)
Definition: DoEmbedding.cc:99
int GetNumEmbEvents()
Definition: DoEmbedding.cc:173
void AddEmbDataFiles(const char *fn_list)
Definition: DoEmbedding.cc:165
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: DoEmbedding.cc:154
void CloseEmbDataFile()
Definition: DoEmbedding.cc:201
bool GetNextEmbEvent()
Definition: DoEmbedding.cc:209
void OpenEmbDataFile(const char *fn_root)
Definition: DoEmbedding.cc:184
int Init(PHCompositeNode *topNode)
Definition: DoEmbedding.cc:48
int InitRun(PHCompositeNode *topNode)
Definition: DoEmbedding.cc:53
void AddEmbDataFile(const char *fn_root)
Definition: DoEmbedding.cc:160
virtual ~DoEmbedding()
Definition: DoEmbedding.cc:39
DoEmbedding(const std::string name="DoEmbedding")
Definition: DoEmbedding.cc:17
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
PHBoolean addNode(PHNode *)
PHNode * findFirst(const std::string &, const std::string &)
std::vector< SQDimuon * >::iterator Iter
virtual ConstIter begin() const =0
virtual ConstIter end() const =0
virtual size_t size() const =0
virtual void push_back(const SQDimuon *dim)=0
An SQ interface class to hold one true or reconstructed dimuon.
Definition: SQDimuon.h:8
virtual int get_dimuon_id() const =0
Return the dimuon ID, which is unique per event(?).
virtual int get_track_id_neg() const =0
Return the track ID of the negative track.
virtual void set_track_id_neg(const int a)=0
virtual void set_track_id_pos(const int a)=0
virtual int get_track_id_pos() const =0
Return the track ID of the positive track.
virtual void set_dimuon_id(const int a)=0
virtual int get_run_id() const =0
Return the run ID.
virtual void set_qie_turn_id(const int a)=0
virtual int get_qie_rf_intensity(const short i) const =0
Return the i-th QIE RF intensity, where i=-16...+16.
virtual int get_qie_turn_id() const =0
Return the QIE turn ID.
virtual void set_qie_rf_id(const int a)=0
virtual void set_qie_rf_intensity(const short i, const int a)=0
virtual int get_qie_rf_id() const =0
Return the QIE RF ID.
virtual int get_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual void push_back(const SQHit *hit)=0
std::vector< SQHit * >::iterator Iter
Definition: SQHitVector.h:38
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void set_hit_id(const int a)
Definition: SQHit.h:40
virtual void set_track_id(const int a)
Definition: SQHit.h:67
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQHit.h:66
virtual ConstIter begin() const =0
virtual void push_back(const SQTrack *trk)=0
virtual ConstIter end() const =0
virtual size_t size() const =0
std::vector< SQTrack * >::iterator Iter
Definition: SQTrackVector.h:23
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
virtual int get_track_id() const =0
Return the track ID, which is unique per event(?).
virtual void set_track_id(const int a)=0
#define PHWHERE
Definition: phool.h:23