Class Reference for E1039 Core & Analysis Software
Fun4AllVectEventInputManager.cc
Go to the documentation of this file.
11  #include <fun4all/Fun4AllServer.h>
14  #include <fun4all/Fun4AllUtils.h>
15  #include <fun4all/PHTFileServer.h>
16  #include <ffaobjects/RunHeader.h>
17  #include <ffaobjects/SyncObjectv2.h>
18  #include <phool/getClass.h>
19  #include <phool/PHCompositeNode.h>
20  #include <phool/PHDataNode.h>
21  #include <phool/recoConsts.h>
22  #include <cstdlib>
23  #include <memory>
24  #include <TFile.h>
25  #include <TTree.h>
26 #include <filesystem>
27 
28 using namespace std;
29 namespace fs = std::filesystem;
30 
31 //Constructor
32 Fun4AllVectEventInputManager::Fun4AllVectEventInputManager(const std::string& name, const std::string& topnodename):
33  Fun4AllInputManager(name, ""),
34  segment(-999),
35  isopen(0),
36  events_total(0),
37  events_thisfile(0),
38  topNodeName(topnodename),
39  _tree_name("save"),
40  run_header(nullptr),
41  spill_map(nullptr),
42  event_header(nullptr),
43  hit_vec(nullptr),
44  trig_hit_vec(nullptr),
45  _fin(nullptr),
46  _tin(nullptr)
47 {
49  topNode = se->topNode(topNodeName.c_str());
50  PHNodeIterator iter(topNode);
51 
52  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
53  if (!runNode) {
54  runNode = new PHCompositeNode("RUN");
55  topNode->addNode(runNode);
56  }
57 
58  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
59  if (!eventNode) {
60  eventNode = new PHCompositeNode("DST");
61  topNode->addNode(eventNode);
62  }
63 
64  run_header = new SQRun_v1();
65  PHIODataNode<PHObject>* runHeaderNode = new PHIODataNode<PHObject>(run_header, "SQRun", "PHObject");
66  runNode->addNode(runHeaderNode);
67 
68  spill_map = new SQSpillMap_v1();
69  PHIODataNode<PHObject>* spillNode = new PHIODataNode<PHObject>(spill_map, "SQSpillMap", "PHObject");
70  runNode->addNode(spillNode);
71 
72  event_header = new SQEvent_v1();
73  PHIODataNode<PHObject>* eventHeaderNode = new PHIODataNode<PHObject>(event_header, "SQEvent", "PHObject");
74  eventNode->addNode(eventHeaderNode);
75 
76  hit_vec = new SQHitVector_v1();
77  PHIODataNode<PHObject>* hitNode = new PHIODataNode<PHObject>(hit_vec, "SQHitVector", "PHObject");
78  eventNode->addNode(hitNode);
79 
81  PHIODataNode<PHObject>* triggerhitNode = new PHIODataNode<PHObject>(trig_hit_vec, "SQTriggerHitVector", "PHObject");
82  eventNode->addNode(triggerhitNode);
83  syncobject = new SyncObjectv2();
84 }
85 
87  {
88  if(isopen)
89  {
90  fileclose();
91  }
92  delete syncobject;
93  }
94 
96  // Example: Initialize default triggers
98  SQSpill* spill = spill_map->get(spillID);
99  if(!spill) {
100  spill = new SQSpill_v2();
101  spill->set_spill_id(spillID);
102  spill->set_run_id(runID);
103 
104  spill_map->insert(spill);
106  }
110  for(int i = -16; i < 16; ++i) {event_header->set_qie_rf_intensity(i, rfIntensities[i+16]);} // need to be added
111  //for(int i = -16; i < 16; ++i) {cout << "intensity: "<< rfIntensities[i+16] <<endl;} // need to be added
112 
113 
114 
115  if (event_header) {
116  // Apply the FPGA triggers to the event header
122  // Apply the NIM triggers to the event header
128  }
129  //we need to fill from all hits vector
130  for (size_t i = 0; i < elementIDs->size(); ++i) {
131  SQHit* hit = new SQHit_v1();
132  hit->set_hit_id(i);
133  hit->set_detector_id(detectorIDs->at(i));
134  hit->set_element_id(elementIDs->at(i));
135  hit->set_tdc_time(tdcTimes->at(i));
136  hit->set_drift_distance(driftDistances->at(i));
137  hit->set_in_time(hitsInTime->at(i));
138  hit_vec->push_back(hit);
139  }
140 
141  //we need to fill from the trig-hits vector (need to work on this later)
142  for (size_t i = 0; i < triggerElementIDs->size(); ++i) {
143  SQHit* hit = new SQHit_v1();
144  hit->set_hit_id(i);
145  hit->set_detector_id(triggerDetectorIDs->at(i));
146  hit->set_element_id(triggerElementIDs->at(i));
147  hit->set_tdc_time(triggerTdcTimes->at(i));
149  hit->set_in_time(triggerHitsInTime->at(i));
150  trig_hit_vec->push_back(hit);
151  }
152 }
153 
154 int Fun4AllVectEventInputManager::fileopen(const std::string &filenam) {
155  if (isopen) {
156  std::cout << "Closing currently open file "
157  << filename
158  << " and opening " << filenam << std::endl;
159  fileclose();
160  }
161  filename = filenam;
162 
163  // Print the absolute path for debugging
164  std::cout << "Attempting to open file: " << std::filesystem::absolute(filenam) << std::endl;
165 
166  if (!std::filesystem::exists(filenam)) {
167  std::cerr << "!!ERROR!! File does not exist: " << filenam << std::endl;
168  return -1;
169  }
170 
171  if (verbosity > 0) {
172  std::cout << ThisName << ": opening file " << filename.c_str() << std::endl;
173  }
174 
175  events_thisfile = 0;
176 
177  _fin = TFile::Open(filenam.c_str(), "READ"); // Open the file dynamically
178  if (!_fin || _fin->IsZombie()) {
179  std::cerr << "!!ERROR!! Failed to open file " << filenam << std::endl;
180  return -1;
181  }
182 
183  _tin = (TTree*) _fin->Get(_tree_name.c_str());
184  if (!_tin) {
185  std::cerr << "!!ERROR!! Tree " << _tree_name << " not found in file " << filenam << std::endl;
186  return -1;
187  }
188 _tin->SetBranchAddress("eventID", &eventID);
189 _tin->SetBranchAddress("runID", &runID);
190 _tin->SetBranchAddress("spillID", &spillID);
191 _tin->SetBranchAddress("fpgaTriggers", fpgaTriggers);
192 _tin->SetBranchAddress("nimTriggers", nimTriggers);
193 _tin->SetBranchAddress("rfIntensities", rfIntensities);
194 
195 _tin->SetBranchAddress("detectorIDs", &detectorIDs);
196 _tin->SetBranchAddress("elementIDs", &elementIDs);
197 _tin->SetBranchAddress("driftDistances", &driftDistances);
198 _tin->SetBranchAddress("tdcTimes", &tdcTimes);
199 _tin->SetBranchAddress("hitsInTime", &hitsInTime);
200 
201 _tin->SetBranchAddress("triggerDriftDistances", &triggerDriftDistances);
202 _tin->SetBranchAddress("triggerElementIDs", &triggerElementIDs);
203 _tin->SetBranchAddress("triggerTdcTimes", &triggerTdcTimes);
204 _tin->SetBranchAddress("triggerHitsInTime", &triggerHitsInTime);
205 
206  segment = 0;
207  isopen = 1;
208  AddToFileOpened(filenam); // Add file to the list of opened files
209  return 0;
210 }
211 
213  readagain:
214  if (!isopen) {
215  if (filelist.empty()) {
216  if (verbosity > 0) {
217  std::cout << Name() << ": No Input file open" << std::endl;
218  }
219  return -1;
220  } else {
221  if (OpenNextFile()) {
222  std::cout << Name() << ": No Input file from filelist opened" << std::endl;
223  return -1;
224  }
225  }
226  }
227 
228  if (verbosity > 3) {
229  std::cout << "Getting Event from " << Name() << std::endl;
230  }
231 
232  if (events_thisfile >= _tin->GetEntries()) {
233  fileclose();
234  goto readagain;
235  }
236 
237  _tin->GetEntry(events_thisfile);
238  events_thisfile++;
239  events_total++;
240  //std::cout << "EventID: "<< EventID<<std::endl;
241  //std::cout << "Fpga1 trigger: "<<fpga_triggers[0] <<std::endl;
242 
247 
252  VectToE1039();
254  ResetEvent();
255  goto readagain;
256  }
257  return 0;
258 }
259 
261 {
262  syncobject->Reset();
263  return 0;
264 }
265 
267  {
268  if (!isopen) {
269  cout << Name() << ": fileclose: No Input file open" << endl;
270  return -1;
271  }
272 
273  _fin->Close();
274  isopen = 0;
275 
276  // if we have a file list, move next entry to top of the list
277  // or repeat the same entry again
278  if (!filelist.empty()) {
279  if (repeat) {
280  filelist.push_back(*(filelist.begin()));
281  if (repeat > 0) {
282  repeat--;
283  }
284  }
285  filelist.pop_front();
286  }
287 
288  return 0;
289  }
290 
291  void
292  Fun4AllVectEventInputManager::Print(const string &what) const
293  {
295  return ;
296  }
297 
298  int
300  {
301  while (!filelist.empty())
302  {
303  list<string>::const_iterator iter = filelist.begin();
304  if (verbosity)
305  {
306  cout << PHWHERE << " opening next file: " << *iter << endl;
307  }
308  if (fileopen(*iter))
309  {
310  cout << PHWHERE << " could not open file: " << *iter << endl;
311  filelist.pop_front();
312  }
313  else
314  {
315  return 0;
316  }
317 
318  }
319  return -1;
320  }
321 
323  {
324  cerr << "!!ERROR!! PushBackEvents(): Not implemented yet." << endl;
325  // PushBackEvents is supposedly pushing events back on the stack which works
326  // easily with root trees (just grab a different entry) but hard in these HepMC ASCII files.
327  // A special case is when the synchronization fails and we need to only push back a single
328  // event. In this case we save the evt pointer as save_evt which is used in the run method
329  // instead of getting the next event.
330  // if (i > 0)
331  // {
332  // if (i == 1 && evt) // check on evt pointer makes sure it is not done from the cmd line
333  // {
334  // save_evt = evt;
335  // return 0;
336  // }
337  // cout << PHWHERE << ThisName
338  // << " Fun4AllVectEventInputManager cannot push back " << i << " events into file"
339  // << endl;
340  // return -1;
341  // }
342  // if (!parser->coda)
343  // {
344  // cout << PHWHERE << ThisName
345  // << " no file open" << endl;
346  // return -1;
347  // }
348  // Skipping events is implemented as
349  // pushing a negative number of events on the stack, so in order to implement
350  // the skipping of events we read -i events.
351  // int nevents = -i; // negative number of events to push back -> skip num events
352  // int errorflag = 0;
353  // while (nevents > 0 && ! errorflag)
354  // {
355  // int * data_ptr = nullptr;
356  // unsigned int coda_id = 0;
357  // if(parser->coda->NextCodaEvent(coda_id, data_ptr))
358  // evt = new EVIO_Event(data_ptr);
359  // if (! evt)
360  // {
361  // cout << "Error after skipping " << i - nevents
362  // << " file exhausted?" << endl;
363  // errorflag = -1;
364  // fileclose();
365  // }
366  // else
367  // {
368  // if (verbosity > 3)
369  // {
370  // //TODO implement this
371  // //cout << "Skipping evt no: " << evt->getEvtSequence() << endl;
372  // }
373  // }
374  // delete evt;
375  // nevents--;
376  // }
377  // return errorflag;
378  return -1;
379  }
380 
381  int
383  {
384  // here we copy the sync object from the current file to the
385  // location pointed to by mastersync. If mastersync is a 0 pointer
386  // the syncobject is cloned. If mastersync allready exists the content
387  // of syncobject is copied
388  if (!(*mastersync))
389  {
390  if (syncobject) *mastersync = syncobject->clone();
391  }
392  else
393  {
394  *(*mastersync) = *syncobject; // copy syncobject content
395  }
397  }
398 
399  int
401  {
402  if (!mastersync)
403  {
404  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
405  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
406  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
407  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
408  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
410  }
411  int iret = syncobject->Different(mastersync);
412  if (iret)
413  {
414  cout << "big problem" << endl;
415  exit(1);
416  }
418  }
TFile clean handling.
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
std::string ThisName
Definition: Fun4AllBase.h:72
virtual void Print(const std::string &what="ALL") const
Fun4AllSyncManager * mySyncManager
std::list< std::string > filelist
void AddToFileOpened(const std::string &filename)
virtual void SetRunNumber(const int runno)
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
void CurrentEvent(const int evt)
void SegmentNumber(const int iseg)
void PrdfEvents(const int i)
int fileopen(const std::string &filename)
void Print(const std::string &what="ALL") const
Fun4AllVectEventInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int GetSyncObject(SyncObject **mastersync)
int SyncIt(const SyncObject *mastersync)
PHBoolean addNode(PHNode *)
PHNode * findFirst(const std::string &, const std::string &)
virtual void set_data_quality(const int a)=0
@ MATRIX2
Definition: SQEvent.h:28
@ NIM5
Definition: SQEvent.h:26
@ MATRIX1
Definition: SQEvent.h:27
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
@ NIM1
Definition: SQEvent.h:22
@ MATRIX3
Definition: SQEvent.h:29
@ NIM3
Definition: SQEvent.h:24
@ MATRIX4
Definition: SQEvent.h:30
@ MATRIX5
Definition: SQEvent.h:31
virtual void set_spill_id(const int a)=0
virtual void set_event_id(const int a)=0
virtual void set_qie_rf_intensity(const short i, const int a)=0
virtual void set_run_id(const int a)=0
virtual void set_trigger(const SQEvent::TriggerMask i, const bool a)=0
virtual void push_back(const SQHit *hit)=0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void set_element_id(const short a)
Definition: SQHit.h:46
virtual void set_hit_id(const int a)
Definition: SQHit.h:40
virtual void set_detector_id(const short a)
Definition: SQHit.h:43
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
virtual void set_n_spill(const int a)
Definition: SQRun.h:69
virtual const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
Definition: SQSpillMap.h:41
virtual SQSpill * insert(const SQSpill *hit)
Insert the given SQSpill object.
Definition: SQSpillMap.h:43
virtual size_t size() const
Return the number of spills held.
Definition: SQSpillMap.h:37
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
virtual void set_spill_id(const int a)
Definition: SQSpill.h:38
virtual void set_run_id(const int a)
Definition: SQSpill.h:34
virtual int Different(const SyncObject *other) const
Definition: SyncObject.cc:47
virtual void SegmentNumber(const int)
set Segment Number
Definition: SyncObject.h:40
virtual void Reset()
Clear Sync.
Definition: SyncObject.cc:9
virtual void EventNumber(const int)
set Event Number
Definition: SyncObject.h:36
virtual SyncObject * clone() const
Virtual copy constructor.
Definition: SyncObject.cc:28
virtual void EventCounter(const int)
set Event Counter
Definition: SyncObject.h:33
virtual void RunNumber(const int)
set Run Number
Definition: SyncObject.h:43
#define PHWHERE
Definition: phool.h:23