Class Reference for E1039 Core & Analysis Software
Fun4AllSRawEventInputManager.cxx
Go to the documentation of this file.
2 
3 #include "SRawEvent.h"
4 
14 
15 #include <fun4all/Fun4AllServer.h>
18 #include <fun4all/Fun4AllUtils.h>
19 #include <fun4all/PHTFileServer.h>
20 
21 #include <ffaobjects/RunHeader.h>
23 
24 #include <phool/getClass.h>
25 #include <phool/PHCompositeNode.h>
26 #include <phool/PHDataNode.h>
27 #include <phool/recoConsts.h>
28 #include <cstdlib>
29 #include <memory>
30 
31 #include <TFile.h>
32 #include <TTree.h>
33 
34 //#include <boost/tokenizer.hpp>
35 //#include <boost/foreach.hpp>
36 //#include <boost/lexical_cast.hpp>
37 
38 using namespace std;
39 
40 Fun4AllSRawEventInputManager::Fun4AllSRawEventInputManager(const string& name, const string& topnodename):
41  Fun4AllInputManager(name, ""),
42  segment(-999),
43  isopen(0),
44  events_total(0),
45  events_thisfile(0),
46  topNodeName(topnodename),
47  _tree_name("save"),
48  _branch_name("rawEvent"),
49  _enable_e1039_translation(false),
50  run_header(nullptr),
51  spill_map(nullptr),
52  event_header(nullptr),
53  hit_vec(nullptr),
54  trig_hit_vec(nullptr)
55 {
57  topNode = se->topNode(topNodeName.c_str());
58  PHNodeIterator iter(topNode);
59 
60  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
61  if (!runNode) {
62  runNode = new PHCompositeNode("RUN");
63  topNode->addNode(runNode);
64  }
65 
66  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
67  if (!eventNode) {
68  eventNode = new PHCompositeNode("DST");
69  topNode->addNode(eventNode);
70  }
71 
72  _srawEvent = new SRawEvent();
73  PHIODataNode<PHObject>* rawEventNode = new PHIODataNode<PHObject>(_srawEvent, "SRawEvent", "PHObject");
74  eventNode->addNode(rawEventNode);
75 
76  syncobject = new SyncObjectv2();
77 }
78 
80 {
81  if(isopen)
82  {
83  fileclose();
84  }
85  delete syncobject;
86 }
87 
89 {
91  {
93 
95  topNode = se->topNode(topNodeName.c_str());
96 
97  PHNodeIterator iter(topNode);
98  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
99  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
100 
101  run_header = new SQRun_v1();
102  PHIODataNode<PHObject>* runHeaderNode = new PHIODataNode<PHObject>(run_header, "SQRun", "PHObject");
103  runNode->addNode(runHeaderNode);
104 
105  spill_map = new SQSpillMap_v1();
106  PHIODataNode<PHObject>* spillNode = new PHIODataNode<PHObject>(spill_map, "SQSpillMap", "PHObject");
107  runNode->addNode(spillNode);
108 
109  event_header = new SQEvent_v1();
110  PHIODataNode<PHObject>* eventHeaderNode = new PHIODataNode<PHObject>(event_header, "SQEvent", "PHObject");
111  eventNode->addNode(eventHeaderNode);
112 
113  hit_vec = new SQHitVector_v1();
114  PHIODataNode<PHObject>* hitNode = new PHIODataNode<PHObject>(hit_vec, "SQHitVector", "PHObject");
115  eventNode->addNode(hitNode);
116 
118  PHIODataNode<PHObject>* triggerhitNode = new PHIODataNode<PHObject>(trig_hit_vec, "SQTriggerHitVector", "PHObject");
119  eventNode->addNode(triggerhitNode);
120  }
121 }
122 
124 {
126 
127  SQSpill* spill = spill_map->get(_srawEvent->getSpillID());
128  if(!spill) {
129  spill = new SQSpill_v2();
131  spill->set_run_id(_srawEvent->getRunID());
132 
133  spill_map->insert(spill);
135  }
136 
153  for(int i = -16; i < 16; ++i) event_header->set_qie_rf_intensity(i, _srawEvent->getIntensity(i));
154 
155  vector<Hit>& hits = _srawEvent->getAllHits();
156  for(auto it = hits.begin(); it != hits.end(); ++it) {
157  SQHit* hit = new SQHit_v1();
158  hit->set_hit_id(it->index);
159  hit->set_detector_id(it->detectorID);
160  hit->set_element_id(it->elementID);
161  hit->set_tdc_time(it->tdcTime);
162  hit->set_in_time(it->isInTime());
163 
164  hit_vec->push_back(hit);
165  delete hit;
166  }
167 
168  vector<Hit>& trhits = _srawEvent->getTriggerHits();
169  for(auto it = trhits.begin(); it != trhits.end(); ++it) {
170  SQHit* hit = new SQHit_v1();
171  hit->set_hit_id(it->index);
172  hit->set_detector_id(it->detectorID);
173  hit->set_element_id(it->elementID);
174  hit->set_tdc_time(it->tdcTime);
175  hit->set_in_time(it->isInTime());
176 
177  trig_hit_vec->push_back(hit);
178  delete hit;
179  }
180 }
181 
182 int Fun4AllSRawEventInputManager::fileopen(const string &filenam)
183 {
184  if (isopen)
185  {
186  cout << "Closing currently open file "
187  << filename
188  << " and opening " << filenam << endl;
189  fileclose();
190  }
191  filename = filenam;
192  //FROG frog;
193  //string fname = frog.location(filename.c_str());
194  string fname = filename;
195  if (verbosity > 0)
196  {
197  cout << ThisName << ": opening file " << filename.c_str() << endl;
198  }
199 
200  events_thisfile = 0;
201 
202  //PHTFileServer::get().open(filenam.c_str(), "READ");
203  _fin = TFile::Open(filenam.c_str(), "READ");
204  _tin = (TTree*) _fin->Get(_tree_name.c_str());
205 
206  if (!_tin) {
207  cerr << "!!ERROR!! Failed at file open (" << filenam.c_str() << "). Exit.\n";
208  cout << PHWHERE << ThisName << ": could not open file " << fname << endl;
209  return -1;
210  }
211 
212  _tin->SetBranchAddress(_branch_name.c_str(), &_srawEvent);
213 
214  //TODO check branch status
215 
216  //pair<int, int> runseg = Fun4AllUtils::GetRunSegment(fname);
217  //segment = runseg.second;
218  segment = 0;
219  isopen = 1;
220  AddToFileOpened(fname); // add file to the list of files which were opened
221  return 0;
222 }
223 
225 {
226  //cout << "Fun4AllSRawEventInputManager::run(): " << nevents << endl;
227  readagain:
228  if (!isopen) {
229  if (filelist.empty()) {
230  if (verbosity > 0) {
231  cout << Name() << ": No Input file open" << endl;
232  }
233  return -1;
234  } else {
235  if (OpenNextFile()) {
236  cout << Name() << ": No Input file from filelist opened" << endl;
237  return -1;
238  }
239  }
240  }
241  if (verbosity > 3) {
242  cout << "Getting Event from " << Name() << endl;
243  }
244 
245  if (events_thisfile>=_tin->GetEntries()) {
246  fileclose();
247  goto readagain;
248  }
249 
250  _tin->GetEntry(events_thisfile);
251  events_thisfile++;
252  events_total++;
253 
255  _srawEvent->identify();
256  }
257 
262 
267 
268  //translate to E1039 data format if enabled
270  E906ToE1039();
271  }
272 
273  // check if the local SubsysReco discards this event
275  ResetEvent();
276  goto readagain;
277  }
278 
279  return 0;
280 }
281 
283 {
284  if (!isopen) {
285  cout << Name() << ": fileclose: No Input file open" << endl;
286  return -1;
287  }
288 
289  _fin->Close();
290  isopen = 0;
291 
292  // if we have a file list, move next entry to top of the list
293  // or repeat the same entry again
294  if (!filelist.empty()) {
295  if (repeat) {
296  filelist.push_back(*(filelist.begin()));
297  if (repeat > 0) {
298  repeat--;
299  }
300  }
301  filelist.pop_front();
302  }
303 
304  return 0;
305 }
306 
307 
308 void
309 Fun4AllSRawEventInputManager::Print(const string &what) const
310 {
312  return ;
313 }
314 
315 int
317 {
318  while (!filelist.empty())
319  {
320  list<string>::const_iterator iter = filelist.begin();
321  if (verbosity)
322  {
323  cout << PHWHERE << " opening next file: " << *iter << endl;
324  }
325  if (fileopen(*iter))
326  {
327  cout << PHWHERE << " could not open file: " << *iter << endl;
328  filelist.pop_front();
329  }
330  else
331  {
332  return 0;
333  }
334 
335  }
336  return -1;
337 }
338 
339 int
341 {
342  //PHNodeIterator iter(topNode);
343  //PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","EVIO"));
344  //PrdfNode->setData(nullptr); // set pointer in Node to nullptr before deleting it
345  //delete evt;
346  //evt = nullptr;
347  syncobject->Reset();
348  return 0;
349 }
350 
351 int
353 {
354  cerr << "!!ERROR!! PushBackEvents(): Not implemented yet." << endl;
355  // PushBackEvents is supposedly pushing events back on the stack which works
356  // easily with root trees (just grab a different entry) but hard in these HepMC ASCII files.
357  // A special case is when the synchronization fails and we need to only push back a single
358  // event. In this case we save the evt pointer as save_evt which is used in the run method
359  // instead of getting the next event.
360 // if (i > 0)
361 // {
362 // if (i == 1 && evt) // check on evt pointer makes sure it is not done from the cmd line
363 // {
364 // save_evt = evt;
365 // return 0;
366 // }
367 // cout << PHWHERE << ThisName
368 // << " Fun4AllSRawEventInputManager cannot push back " << i << " events into file"
369 // << endl;
370 // return -1;
371 // }
372 // if (!parser->coda)
373 // {
374 // cout << PHWHERE << ThisName
375 // << " no file open" << endl;
376 // return -1;
377 // }
378  // Skipping events is implemented as
379  // pushing a negative number of events on the stack, so in order to implement
380  // the skipping of events we read -i events.
381 // int nevents = -i; // negative number of events to push back -> skip num events
382 // int errorflag = 0;
383 // while (nevents > 0 && ! errorflag)
384 // {
385 // int * data_ptr = nullptr;
386 // unsigned int coda_id = 0;
387 // if(parser->coda->NextCodaEvent(coda_id, data_ptr))
388 // evt = new EVIO_Event(data_ptr);
389 // if (! evt)
390 // {
391 // cout << "Error after skipping " << i - nevents
392 // << " file exhausted?" << endl;
393 // errorflag = -1;
394 // fileclose();
395 // }
396 // else
397 // {
398 // if (verbosity > 3)
399 // {
400 // //TODO implement this
401 // //cout << "Skipping evt no: " << evt->getEvtSequence() << endl;
402 // }
403 // }
404 // delete evt;
405 // nevents--;
406 // }
407 // return errorflag;
408  return -1;
409 }
410 
411 int
413 {
414  // here we copy the sync object from the current file to the
415  // location pointed to by mastersync. If mastersync is a 0 pointer
416  // the syncobject is cloned. If mastersync allready exists the content
417  // of syncobject is copied
418  if (!(*mastersync))
419  {
420  if (syncobject) *mastersync = syncobject->clone();
421  }
422  else
423  {
424  *(*mastersync) = *syncobject; // copy syncobject content
425  }
427 }
428 
429 int
431 {
432  if (!mastersync)
433  {
434  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
435  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
436  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
437  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
438  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
440  }
441  int iret = syncobject->Different(mastersync);
442  if (iret)
443  {
444  cout << "big problem" << endl;
445  exit(1);
446  }
448 }
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
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
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)
void Print(const std::string &what="ALL") const
Fun4AllSRawEventInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int GetSyncObject(SyncObject **mastersync)
bool _enable_e1039_translation
sraw event pointer on the DST node as well as the TTree, is this gonna be faster?
int fileopen(const std::string &filenam)
int SyncIt(const SyncObject *mastersync)
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)
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_qie_turn_id(const int a)=0
virtual void set_spill_id(const int a)=0
virtual void set_event_id(const int a)=0
virtual void set_qie_rf_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_in_time(const bool a)
Definition: SQHit.h:91
virtual void set_run_id(const int a)
Definition: SQRun.h:33
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
std::vector< Hit > & getTriggerHits()
Definition: SRawEvent.h:142
Int_t getSpillID()
Definition: SRawEvent.h:151
Int_t getEventID()
Definition: SRawEvent.h:150
Int_t getRFID()
Definition: SRawEvent.h:200
Int_t getIntensity()
Definition: SRawEvent.h:201
void identify(std::ostream &os=std::cout) const
PHObject virtual overloads.
Definition: SRawEvent.h:103
std::vector< Hit > & getAllHits()
Definition: SRawEvent.h:141
Int_t getTurnID()
Definition: SRawEvent.h:199
Int_t getRunID()
Definition: SRawEvent.h:149
bool isTriggeredBy(Int_t trigger)
Definition: SRawEvent.h:177
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