Class Reference for E1039 Core & Analysis Software
Fun4AllEVIOInputManager.cc
Go to the documentation of this file.
2 
3 #include "MainDaqParser.h"
4 #include "CodaInputManager.h"
5 #include "DecoData.h"
6 
7 //#include <event/EVIO_Event.h>
21 
22 #include <fun4all/Fun4AllServer.h>
25 #include <fun4all/Fun4AllUtils.h>
26 
27 #include <ffaobjects/RunHeader.h>
29 
30 #include <phool/getClass.h>
31 #include <phool/PHCompositeNode.h>
32 #include <phool/PHDataNode.h>
33 #include <phool/recoConsts.h>
34 #include <phool/PHTimer2.h>
35 #include <cstdlib>
36 #include <iomanip>
37 #include <memory>
38 
39 //#include <boost/tokenizer.hpp>
40 //#include <boost/foreach.hpp>
41 //#include <boost/lexical_cast.hpp>
42 
43 using namespace std;
44 
45 const std::vector<std::string> Fun4AllEVIOInputManager::LIST_TIMERS = {
46  "run_open" ,
47  "run_get_node" ,
48  "run_get_event" ,
49  "run_set_param" ,
50  "run_set_run_data" ,
51  "run_set_spill_data",
52  "run_set_event_data",
53  "run_set_hit_data"
54 };
55 
56 Fun4AllEVIOInputManager::Fun4AllEVIOInputManager(const string &name, const string &topnodename) :
57  Fun4AllInputManager(name, ""),
58  segment(-999),
59  isopen(0),
60  events_total(0),
61  events_thisfile(0),
62  topNodeName(topnodename),
63  //evt(NULL),
64  //save_evt(NULL),
65  parser(new MainDaqParser())
66  //coda(NULL)
67 {
69  topNode = se->topNode(topNodeName.c_str());
70  PHNodeIterator iter(topNode);
71 
73  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
74  if (!runNode) {
75  runNode = new PHCompositeNode("RUN");
76  topNode->addNode(runNode);
77  }
78 
79  PHIODataNode<PHObject>* runHeaderNode = new PHIODataNode<PHObject>(new SQRun_v2(), "SQRun", "PHObject");
80  runNode->addNode(runHeaderNode);
81 
82  PHIODataNode<PHObject>* spillNode = new PHIODataNode<PHObject>(new SQSpillMap_v1(), "SQSpillMap", "PHObject");
83  runNode->addNode(spillNode);
84 
85  PHIODataNode<PHObject>* hardSpillNode = new PHIODataNode<PHObject>(new SQIntMap_v1(), "SQHardSpillMap", "PHObject");
86  runNode->addNode(hardSpillNode);
87 
88  PHIODataNode<PHObject>* paramDecoNode = new PHIODataNode<PHObject>(new SQParamDeco_v1(), "SQParamDeco", "PHObject");
89  runNode->addNode(paramDecoNode);
90 
92  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
93  if (!eventNode) {
94  eventNode = new PHCompositeNode("DST");
95  topNode->addNode(eventNode);
96  }
97 
98  PHIODataNode<PHObject>* eventHeaderNode = new PHIODataNode<PHObject>(new SQEvent_v2(),"SQEvent", "PHObject");
99  eventNode->addNode(eventHeaderNode);
100 
101  PHIODataNode<PHObject>* hardEventNode = new PHIODataNode<PHObject>(new SQHardEvent_v1(),"SQHardEvent", "PHObject");
102  eventNode->addNode(hardEventNode);
103 
104  PHIODataNode<PHObject>* hitNode = new PHIODataNode<PHObject>(new SQHitVector_v1(), "SQHitVector", "PHObject");
105  eventNode->addNode(hitNode);
106 
107  PHIODataNode<PHObject>* triggerhitNode = new PHIODataNode<PHObject>(new SQHitVector_v1(), "SQTriggerHitVector", "PHObject");
108  eventNode->addNode(triggerhitNode);
109 
110  //PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","EVIO"));
111  //if (!PrdfNode)
112  // {
113  // PHDataNode<Event> *newNode = new PHDataNode<Event>(evt,"EVIO","Event");
114  // topNode->addNode(newNode);
115  // }
116  syncobject = new SyncObjectv2();
117 
118  for (auto it = LIST_TIMERS.begin(); it != LIST_TIMERS.end(); it++) {
119  string name = *it;
120  m_timers[name] = new PHTimer2(name);
121  }
122 
123  return ;
124 }
125 
127 {
128  if (isopen)
129  {
130  fileclose();
131  }
132  if (parser) delete parser;
133  delete syncobject;
134  for (auto it = m_timers.begin(); it != m_timers.end(); it++) delete it->second;
135 }
136 
137 int Fun4AllEVIOInputManager::fileopen(const string &filenam)
138 {
139  if (isopen)
140  {
141  cout << "Closing currently open file "
142  << filename
143  << " and opening " << filenam << endl;
144  fileclose();
145  }
146  filename = filenam;
147  //FROG frog;
148  //string fname = frog.location(filename.c_str());
149  string fname = filename;
150  if (verbosity > 0)
151  {
152  cout << ThisName << ": opening file " << filename.c_str() << endl;
153  }
154 
155  events_thisfile = 0;
157  int status = parser->OpenCodaFile(fname);
158  if (status!=0) {
159  cout << PHWHERE << ThisName << ": could not open file " << fname << " with status = " << status << "." << endl;
160  return -1;
161  }
162  //pair<int, int> runseg = Fun4AllUtils::GetRunSegment(fname);
163  //segment = runseg.second;
164  segment = 0;
165  isopen = 1;
166  AddToFileOpened(fname); // add file to the list of files which were opened
167  return 0;
168 }
169 
171 {
172  //cout << "Fun4AllEVIOInputManager::run(): " << nevents << endl;
173  readagain:
174 
175  m_timers["run_open"]->restart();
176  if (!isopen)
177  {
178  if (filelist.empty())
179 
180  {
181  if (verbosity > 0)
182  {
183  cout << Name() << ": No Input file open" << endl;
184  }
185  return -1;
186  }
187  else
188  {
189  if (OpenNextFile())
190  {
191  cout << Name() << ": No Input file from filelist opened" << endl;
192  return -1;
193  }
194  }
195  }
196  m_timers["run_open"]->stop();
197 
198  m_timers["run_get_node"]->restart();
199  if (verbosity > 3) cout << "Getting Event from " << Name() << endl;
200  // cout << "running event " << nevents << endl;
201  //PHNodeIterator iter(topNode);
202  SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
203  if (!run_header) {
205  }
206  SQSpillMap* spill_map = findNode::getClass<SQSpillMap>(topNode, "SQSpillMap");
207  if (!spill_map) {
209  }
210  SQIntMap* hard_spill_map = findNode::getClass<SQIntMap>(topNode, "SQHardSpillMap");
211  if (!hard_spill_map) {
213  }
214 
215  SQEvent* event_header = findNode::getClass<SQEvent>(topNode, "SQEvent");
216  if (!event_header) {
218  }
219 
220  SQHardEvent* hard_evt = findNode::getClass<SQHardEvent>(topNode, "SQHardEvent");
221  if (!hard_evt) return Fun4AllReturnCodes::ABORTEVENT;
222 
223  SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
224  if (!hit_vec) {
226  }
227 
228  SQHitVector* trig_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQTriggerHitVector");
229  if (!trig_hit_vec) {
231  }
232  m_timers["run_get_node"]->stop();
233 
234  m_timers["run_get_event"]->restart();
235  //PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","EVIO"));
236  EventData* ed = 0;
237  SpillData* sd = 0;
238  RunData * rd = 0;
239 // if (save_evt) // if an event was pushed back, copy saved pointer and reset save_evt pointer
240 // {
241 // cerr << "!!ERROR!! save_evt is not supported yet." << endl;
242 // evt = save_evt;
243 // save_evt = NULL;
244 // events_thisfile--;
245 // events_total--;
246 // }
247 // else
248  {
249  //int * data_ptr = NULL;
250  //unsigned int coda_id = 0;
251  //if(parser->coda->NextCodaEvent(coda_id, data_ptr))
252  // evt = new EVIO_Event(data_ptr);
253  parser->NextPhysicsEvent(ed, sd, rd);
254  }
255  m_timers["run_get_event"]->stop();
256 
257  if (!ed)
258  {
259  fileclose();
260  goto readagain;
261  }
262  if (verbosity > 3) cout << ThisName << ": run " << rd->run_id << ", spill " << sd->spill_id << ", event " << ed->event.eventID << endl;
263 
264  if (events_total == 0) {
265  m_timers["run_set_param"]->restart();
266  SQParamDeco* sqpd = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
267  if (!sqpd) return Fun4AllReturnCodes::ABORTEVENT;
268  DecoParam* dp = &parser->dec_par;
272  m_timers["run_set_param"]->stop();
273  }
274 
275  events_total++;
276  events_thisfile++;
277 
278  m_timers["run_set_run_data"]->restart();
279 
280  SetRunNumber (rd->run_id);
286  syncobject->RunNumber (rd->run_id);
288 
289  run_header->set_run_id (rd->run_id);
290  run_header->set_unix_time_begin(rd->utime_b);
291  run_header->set_unix_time_end (rd->utime_e);
292  for (int ii = 0; ii < 5; ii++) {
293  run_header->set_fpga_enabled (ii, rd->fpga_enabled [ii]);
294  run_header->set_fpga_prescale(ii, rd->fpga_prescale[ii]);
295  run_header->set_nim_enabled (ii, rd-> nim_enabled [ii]);
296  }
297  for (int ii = 0; ii < 3; ii++) {
298  run_header->set_nim_prescale(ii, rd->nim_prescale[ii]);
299  }
300  if (rd->v1495_id[0] != 5) {
301  cout << " N of V1495 IDs != 5 but " << rd->v1495_id[0] << "." << endl;
302  }
303  for (int ii = 0; ii < 5; ii++) {
304  run_header->set_v1495_id(ii, rd->v1495_id[ii+1]);
305  }
306 
307  run_header->set_run_desc (rd->run_desc);
308  run_header->set_n_fee_event (rd->n_fee_event);
309  run_header->set_n_fee_prescale (rd->n_fee_prescale);
310  run_header->set_n_run_desc (rd->n_run_desc);
311  run_header->set_n_spill (rd->n_spill);
312  run_header->set_n_evt_all (rd->n_evt_all);
313  run_header->set_n_evt_dec (rd->n_evt_dec);
314  run_header->set_n_phys_evt (rd->n_phys_evt);
315  run_header->set_n_phys_evt_bad (rd->n_phys_evt_bad);
316  run_header->set_n_flush_evt (rd->n_flush_evt);
317  run_header->set_n_flush_evt_bad(rd->n_flush_evt_bad);
318  run_header->set_n_hit (rd->n_hit);
319  run_header->set_n_t_hit (rd->n_t_hit);
320  run_header->set_n_hit_bad (rd->n_hit_bad);
321  run_header->set_n_t_hit_bad (rd->n_t_hit_bad);
322  run_header->set_n_v1495 (rd->n_v1495);
323  run_header->set_n_v1495_d1ad (rd->n_v1495_d1ad);
324  run_header->set_n_v1495_d2ad (rd->n_v1495_d2ad);
325  run_header->set_n_v1495_d3ad (rd->n_v1495_d3ad);
326  m_timers["run_set_run_data"]->stop();
327 
328  m_timers["run_set_spill_data"]->restart();
329  SQSpill* spill = spill_map->get(sd->spill_id);
330  if (! spill) {
331  spill = new SQSpill_v2();
332  spill->set_spill_id (sd->spill_id);
333  spill->set_run_id (sd->run_id );
334  spill->set_target_pos (sd->targ_pos);
335  for (ScalerDataList::iterator it = sd->list_scaler.begin(); it != sd->list_scaler.end(); it++) {
336  SQScaler_v1 obj;
337  obj.set_name (it->name );
338  obj.set_count(it->value);
339  if (it->type == MainDaqParser::TYPE_BOS) {
340  obj.set_type(SQScaler::BOS);
341  spill->get_bos_scaler_list()->insert(it->name, &obj);
342  } else {
343  obj.set_type(SQScaler::EOS);
344  spill->get_eos_scaler_list()->insert(it->name, &obj);
345  }
346  }
347  for (SlowControlDataList::iterator it = sd->list_slow_cont.begin(); it != sd->list_slow_cont.end(); it++) {
348  SQSlowCont_v1 obj;
349  obj.set_time_stamp(it->ts );
350  obj.set_name (it->name );
351  obj.set_value (it->value);
352  obj.set_type (it->type );
353  spill->get_slow_cont_list()->insert(it->name, &obj);
354  }
355  spill_map->insert(spill);
356  }
357  SQHardSpill* hard_spill = (SQHardSpill*)hard_spill_map->get(sd->spill_id);
358  if (! hard_spill) {
359  SQHardSpill_v1 obj;
360  obj.set_bos_coda_id (sd->bos_coda_id );
362  obj.set_eos_coda_id (sd->eos_coda_id );
364  obj.set_time_input (sd->time_input );
365  obj.set_time_decode (sd->time_decode );
366  obj.set_time_map (sd->time_map );
367  hard_spill = (SQHardSpill*)hard_spill_map->insert(sd->spill_id, &obj);
368 
370  }
371  double time_subsys, time_output;
372  Fun4AllServer::instance()->ReadSpillTimer(time_subsys, time_output);
373  hard_spill->set_time_subsys(time_subsys);
374  hard_spill->set_time_output(time_output);
375 
376  m_timers["run_set_spill_data"]->stop();
377 
378  m_timers["run_set_event_data"]->restart();
379  event_header->set_run_id (ed->event.runID );
380  event_header->set_spill_id (ed->event.spillID);
381  event_header->set_event_id (ed->event.eventID);
382  event_header->set_data_quality (ed->event.dataQuality);
383  event_header->set_trigger (SQEvent::MATRIX1, ed->event.MATRIX[0]);
384  event_header->set_trigger (SQEvent::MATRIX2, ed->event.MATRIX[1]);
385  event_header->set_trigger (SQEvent::MATRIX3, ed->event.MATRIX[2]);
386  event_header->set_trigger (SQEvent::MATRIX4, ed->event.MATRIX[3]);
387  event_header->set_trigger (SQEvent::MATRIX5, ed->event.MATRIX[4]);
388  event_header->set_trigger (SQEvent::NIM1 , ed->event.NIM [0]);
389  event_header->set_trigger (SQEvent::NIM2 , ed->event.NIM [1]);
390  event_header->set_trigger (SQEvent::NIM3 , ed->event.NIM [2]);
391  event_header->set_trigger (SQEvent::NIM4 , ed->event.NIM [3]);
392  event_header->set_trigger (SQEvent::NIM5 , ed->event.NIM [4]);
393  for (int ii=0; ii<4; ii++) event_header->set_qie_presum(ii, ed->event.sums[ii]);
394  event_header->set_qie_trigger_count(ed->event.triggerCount);
395  event_header->set_qie_turn_id (ed->event.turnOnset);
396  event_header->set_qie_rf_id (ed->event.rfOnset);
397  for (int ii=0; ii<33; ii++) event_header->set_qie_rf_intensity(ii-16, ed->event.rf[ii]);
398 
399  hard_evt->set_coda_event_id(ed->event.codaEventID);
400  hard_evt->set_vme_time (ed->event.vmeTime);
401  for (int ii=0; ii<5; ii++) {
402  hard_evt->set_raw_matrix (ii, ed->event.RawMATRIX [ii]);
403  hard_evt->set_after_inh_matrix(ii, ed->event.AfterInhMATRIX[ii]);
404  }
405  hard_evt->set_flag_v1495 (ed->event.flag_v1495);
406  hard_evt->set_n_board_qie (ed->n_qie );
407  hard_evt->set_n_board_v1495 (ed->n_v1495 );
408  hard_evt->set_n_board_taiwan (ed->n_tdc );
409  hard_evt->set_n_board_trig_bit (ed->n_trig_b);
410  hard_evt->set_n_board_trig_count(ed->n_trig_c);
411  m_timers["run_set_event_data"]->stop();
412 
413  m_timers["run_set_hit_data"]->restart();
414  for (HitDataList::iterator it = ed->list_hit.begin(); it != ed->list_hit.end(); it++) {
415  HitData* hd = &*it;
416  if (hd->det == 0) continue;
417  SQHit* hit = new SQHit_v1();
418  hit->set_hit_id (hd->id );
419  hit->set_detector_id(hd->det );
420  hit->set_element_id (hd->ele );
421  hit->set_level (hd->lvl );
422  hit->set_tdc_time (hd->time);
423  hit->set_drift_distance(0);
424  hit->set_pos (0);
425  hit_vec->push_back(hit);
426  delete hit;
427  }
428 
429  for (HitDataList::iterator it = ed->list_hit_trig.begin(); it != ed->list_hit_trig.end(); it++) {
430  HitData* hd = &*it;
431  if (hd->det == 0) continue;
432  SQHit* hit = new SQHit_v1();
433  hit->set_hit_id (hd->id );
434  hit->set_detector_id(hd->det );
435  hit->set_element_id (hd->ele );
436  hit->set_level (hd->lvl );
437  hit->set_tdc_time (hd->time);
438  hit->set_drift_distance(0);
439  hit->set_pos (0);
440  trig_hit_vec->push_back(hit);
441  delete hit;
442  }
443  m_timers["run_set_hit_data"]->stop();
444 
445  // check if the local SubsysReco discards this event
447  {
448  ResetEvent();
449  goto readagain;
450  }
451  return 0;
452 }
453 
455 {
456  if (!isopen)
457  {
458  cout << Name() << ": fileclose: No Input file open" << endl;
459  return -1;
460  }
461 
462  SQRun* sqrun = findNode::getClass<SQRun>(topNode, "SQRun");
463  if (sqrun) {
464  RunData* rd = parser->GetRunData();
465  sqrun->set_unix_time_end(rd->utime_e);
466  }
467 
468  parser->End();
469  cout << "Fun4AllEVIOInputManager: Timer:\n";
470  for (auto it = LIST_TIMERS.begin(); it != LIST_TIMERS.end(); it++) {
471  m_timers[*it]->print_stat();
472  }
473 
474  isopen = 0;
475  // if we have a file list, move next entry to top of the list
476  // or repeat the same entry again
477  if (!filelist.empty())
478  {
479  if (repeat)
480  {
481  filelist.push_back(*(filelist.begin()));
482  if (repeat > 0)
483  {
484  repeat--;
485  }
486  }
487  filelist.pop_front();
488  }
489 
490  return 0;
491 }
492 
493 
494 void
495 Fun4AllEVIOInputManager::Print(const string &what) const
496 {
498  return ;
499 }
500 
501 int
503 {
504  while (!filelist.empty())
505  {
506  list<string>::const_iterator iter = filelist.begin();
507  if (verbosity)
508  {
509  cout << PHWHERE << " opening next file: " << *iter << endl;
510  }
511  if (fileopen(*iter))
512  {
513  cout << PHWHERE << " could not open file: " << *iter << endl;
514  filelist.pop_front();
515  }
516  else
517  {
518  return 0;
519  }
520 
521  }
522  return -1;
523 }
524 
525 int
527 {
528  //PHNodeIterator iter(topNode);
529  //PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","EVIO"));
530  //PrdfNode->setData(NULL); // set pointer in Node to NULL before deleting it
531  //delete evt;
532  //evt = NULL;
533  syncobject->Reset();
534  return 0;
535 }
536 
537 int
539 {
540  cerr << "!!ERROR!! PushBackEvents(): Not implemented yet." << endl;
541  // PushBackEvents is supposedly pushing events back on the stack which works
542  // easily with root trees (just grab a different entry) but hard in these HepMC ASCII files.
543  // A special case is when the synchronization fails and we need to only push back a single
544  // event. In this case we save the evt pointer as save_evt which is used in the run method
545  // instead of getting the next event.
546 // if (i > 0)
547 // {
548 // if (i == 1 && evt) // check on evt pointer makes sure it is not done from the cmd line
549 // {
550 // save_evt = evt;
551 // return 0;
552 // }
553 // cout << PHWHERE << ThisName
554 // << " Fun4AllEVIOInputManager cannot push back " << i << " events into file"
555 // << endl;
556 // return -1;
557 // }
558 // if (!parser->coda)
559 // {
560 // cout << PHWHERE << ThisName
561 // << " no file open" << endl;
562 // return -1;
563 // }
564  // Skipping events is implemented as
565  // pushing a negative number of events on the stack, so in order to implement
566  // the skipping of events we read -i events.
567 // int nevents = -i; // negative number of events to push back -> skip num events
568 // int errorflag = 0;
569 // while (nevents > 0 && ! errorflag)
570 // {
571 // int * data_ptr = NULL;
572 // unsigned int coda_id = 0;
573 // if(parser->coda->NextCodaEvent(coda_id, data_ptr))
574 // evt = new EVIO_Event(data_ptr);
575 // if (! evt)
576 // {
577 // cout << "Error after skipping " << i - nevents
578 // << " file exhausted?" << endl;
579 // errorflag = -1;
580 // fileclose();
581 // }
582 // else
583 // {
584 // if (verbosity > 3)
585 // {
586 // //TODO implement this
587 // //cout << "Skipping evt no: " << evt->getEvtSequence() << endl;
588 // }
589 // }
590 // delete evt;
591 // nevents--;
592 // }
593 // return errorflag;
594  return -1;
595 }
596 
597 int
599 {
600  // here we copy the sync object from the current file to the
601  // location pointed to by mastersync. If mastersync is a 0 pointer
602  // the syncobject is cloned. If mastersync allready exists the content
603  // of syncobject is copied
604  if (!(*mastersync))
605  {
606  if (syncobject) *mastersync = syncobject->clone();
607  }
608  else
609  {
610  *(*mastersync) = *syncobject; // copy syncobject content
611  }
613 }
614 
615 int
617 {
618  if (!mastersync)
619  {
620  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
621  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
622  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
623  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
624  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
626  }
627  int iret = syncobject->Different(mastersync);
628  if (iret)
629  {
630  cout << "big problem" << endl;
631  exit(1);
632  }
634 }
635 
636 void Fun4AllEVIOInputManager::SetOnline(const bool is_online)
637 {
638  parser->dec_par.is_online = is_online;
639  parser->GetCoda()->SetOnline(is_online);
640 }
641 
643 {
644  parser->dec_par.sampling = factor;
645 }
646 
647 void Fun4AllEVIOInputManager::DirParam(const std::string dir)
648 {
649  parser->dec_par.dir_param = dir;
650 }
651 
653 {
654  parser->dec_par.time_wait = sec;
655 }
656 
658 {
659  parser->UseLocalSpillID(use);
660 }
661 
663 {
664  return parser->UseLocalSpillID();
665 }
666 
668 {
669  parser->ForceLocalSpillID(force);
670 }
671 
673 {
674  return parser->ForceLocalSpillID();
675 }
void SetOnline(const bool val)
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
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
std::string ThisName
Definition: Fun4AllBase.h:72
std::map< std::string, PHTimer2 * > m_timers
void SetOnline(const bool is_online)
int fileopen(const std::string &filenam)
void Print(const std::string &what="ALL") const
int GetSyncObject(SyncObject **mastersync)
void PretendSpillInterval(const int sec)
void DirParam(const std::string dir)
void EventSamplingFactor(const int factor)
Fun4AllEVIOInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int run(const int nevents=0)
int SyncIt(const SyncObject *mastersync)
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 ResetSpillTimer()
void ReadSpillTimer(double &time_subsys, double &time_output)
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)
RunData * GetRunData()
Definition: MainDaqParser.h:88
void ForceLocalSpillID(const bool force)
Definition: MainDaqParser.h:93
void UseLocalSpillID(const bool use)
Definition: MainDaqParser.h:91
CodaInputManager * GetCoda()
Definition: MainDaqParser.h:85
bool NextPhysicsEvent(EventData *&ed, SpillData *&sd, RunData *&rd)
DecoParam dec_par
Definition: MainDaqParser.h:96
int OpenCodaFile(const std::string fname, const long file_size_min=32768, const int sec_wait=15, const int n_wait=40)
PHBoolean addNode(PHNode *)
PHNode * findFirst(const std::string &, const std::string &)
Class to measure the time spent by a code block.
Definition: PHTimer2.h:17
std::string GetParamID()
Definition: RunParamBase.h:25
std::string GetMapID()
Definition: RunParamBase.h:27
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
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_qie_presum(const unsigned short i, 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_qie_trigger_count(const int a)=0
virtual void set_trigger(const SQEvent::TriggerMask i, const bool a)=0
An SQ interface class to hold one hardware-related event info.
Definition: SQHardEvent.h:7
virtual void set_coda_event_id(const int a)=0
virtual void set_after_inh_matrix(const unsigned short i, const bool a)=0
virtual void set_n_board_qie(const short a)=0
virtual void set_vme_time(const int a)=0
virtual void set_flag_v1495(const short a)=0
virtual void set_raw_matrix(const unsigned short i, const bool a)=0
virtual void set_n_board_v1495(const short a)=0
virtual void set_n_board_trig_bit(const short a)=0
virtual void set_n_board_trig_count(const short a)=0
virtual void set_n_board_taiwan(const short a)=0
virtual void set_time_input(const double a)
virtual void set_bos_coda_id(const int a)
virtual void set_bos_vme_time(const int a)
virtual void set_time_decode(const double a)
virtual void set_eos_vme_time(const int a)
virtual void set_eos_coda_id(const int a)
virtual void set_time_map(const double a)
An SQ interface class to hold the hardware-related data of one spill.
Definition: SQHardSpill.h:7
virtual void set_time_output(const double a)=0
virtual void set_time_subsys(const double a)=0
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
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_level(const short a)
Definition: SQHit.h:52
virtual void set_hit_id(const int a)
Definition: SQHit.h:40
virtual void set_pos(const float a)
Definition: SQHit.h:61
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
A general-purpose SQ interface class that holds a list of PHObjects with key = integer.
Definition: SQIntMap.h:14
virtual const PHObject * get(unsigned int idkey) const
Definition: SQIntMap.h:34
virtual PHObject * insert(const unsigned int idkey, const PHObject *item)
Definition: SQIntMap.h:36
SQParamDeco_v1.h.
Definition: SQParamDeco_v1.h:6
SQParamDeco.h.
Definition: SQParamDeco.h:16
virtual void set_variable(const std::string name, const std::string value)=0
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
virtual void set_n_v1495_d1ad(const int a)
Definition: SQRun.h:105
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 void set_n_evt_all(const int a)
Definition: SQRun.h:72
virtual void set_fpga_enabled(const int chan, const int a)
Definition: SQRun.h:42
virtual void set_n_run_desc(const int a)
Definition: SQRun.h:66
virtual void set_n_v1495_d2ad(const int a)
Definition: SQRun.h:108
virtual void set_n_flush_evt(const int a)
Definition: SQRun.h:84
virtual void set_n_t_hit_bad(const int a)
Definition: SQRun.h:99
virtual void set_n_phys_evt(const int a)
Definition: SQRun.h:78
virtual void set_n_t_hit(const int a)
Definition: SQRun.h:93
virtual void set_unix_time_begin(const int a)
Definition: SQRun.h:36
virtual void set_v1495_id(const int chan, const int id)
Definition: SQRun.h:54
virtual void set_n_v1495(const int a)
Definition: SQRun.h:102
virtual void set_unix_time_end(const int a)
Definition: SQRun.h:39
virtual void set_n_hit_bad(const int a)
Definition: SQRun.h:96
virtual void set_run_desc(const std::string a)
Definition: SQRun.h:57
virtual void set_fpga_prescale(const int chan, const int a)
Definition: SQRun.h:48
virtual void set_n_phys_evt_bad(const int a)
Definition: SQRun.h:81
virtual void set_n_evt_dec(const int a)
Definition: SQRun.h:75
virtual void set_n_fee_prescale(const int a)
Definition: SQRun.h:63
virtual void set_n_fee_event(const int a)
Definition: SQRun.h:60
virtual void set_nim_enabled(const int chan, const int a)
Definition: SQRun.h:45
virtual void set_n_flush_evt_bad(const int a)
Definition: SQRun.h:87
virtual void set_n_v1495_d3ad(const int a)
Definition: SQRun.h:111
virtual void set_n_hit(const int a)
Definition: SQRun.h:90
virtual void set_nim_prescale(const int chan, const int a)
Definition: SQRun.h:51
virtual void set_name(const std::string a)
Definition: SQScaler_v1.h:26
virtual void set_count(const int a)
Definition: SQScaler_v1.h:29
virtual void set_type(const ScalerType_t a)
Definition: SQScaler_v1.h:23
virtual void set_value(const std::string a)
Definition: SQSlowCont_v1.h:29
virtual void set_type(const std::string a)
Definition: SQSlowCont_v1.h:32
virtual void set_name(const std::string a)
Definition: SQSlowCont_v1.h:26
virtual void set_time_stamp(const std::string a)
Definition: SQSlowCont_v1.h:23
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
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
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
virtual SQStringMap * get_slow_cont_list()
Return the list of slow control variables.
Definition: SQSpill.h:67
virtual void set_spill_id(const int a)
Definition: SQSpill.h:38
virtual void set_target_pos(const short a)
Definition: SQSpill.h:42
virtual SQStringMap * get_bos_scaler_list()
Return the list of scaler variables read out at BOS.
Definition: SQSpill.h:61
virtual void set_run_id(const int a)
Definition: SQSpill.h:34
virtual SQStringMap * get_eos_scaler_list()
Return the list of scaler variables read out at EOS.
Definition: SQSpill.h:64
virtual PHObject * insert(const std::string key, const PHObject *item)
Definition: SQStringMap.h:36
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
int time_wait
waiting time in second to pretend the online data flow.
Definition: DecoParam.h:23
bool is_online
Definition: DecoParam.h:20
ChanMapV1495 chan_map_v1495
Definition: DecoParam.h:26
ChanMapTaiwan chan_map_taiwan
Definition: DecoParam.h:25
int verb
Verbosity. 0 = error, 1 = warning, 2 = info, 3 = debug, 4 = insane.
Definition: DecoParam.h:22
std::string dir_param
Definition: DecoParam.h:19
ChanMapScaler chan_map_scaler
Definition: DecoParam.h:27
int sampling
Definition: DecoParam.h:21
unsigned int n_tdc
Definition: DecoData.h:213
HitDataList list_hit
Definition: DecoData.h:218
unsigned int n_qie
Definition: DecoData.h:211
EventInfo event
Definition: DecoData.h:217
unsigned int n_trig_c
Definition: DecoData.h:215
unsigned int n_v1495
Definition: DecoData.h:212
unsigned int n_trig_b
Definition: DecoData.h:214
HitDataList list_hit_trig
Definition: DecoData.h:219
int RawMATRIX[5]
Definition: DecoData.h:194
int runID
Definition: DecoData.h:190
unsigned int rf[33]
Definition: DecoData.h:203
int vmeTime
Definition: DecoData.h:193
unsigned int rfOnset
Definition: DecoData.h:202
int eventID
Definition: DecoData.h:188
unsigned int sums[4]
Definition: DecoData.h:199
int MATRIX[5]
Definition: DecoData.h:197
unsigned int triggerCount
Definition: DecoData.h:200
unsigned int turnOnset
Definition: DecoData.h:201
int codaEventID
Definition: DecoData.h:189
short flag_v1495
Definition: DecoData.h:204
int AfterInhMATRIX[5]
Definition: DecoData.h:195
int dataQuality
Definition: DecoData.h:192
int spillID
Definition: DecoData.h:191
int NIM[5]
Definition: DecoData.h:196
double time
Definition: DecoData.h:181
int id
Definition: DecoData.h:174
short ele
Definition: DecoData.h:179
short lvl
Definition: DecoData.h:180
short det
Definition: DecoData.h:178
int utime_b
Definition: DecoData.h:74
int v1495_id[10]
Definition: DecoData.h:84
int n_v1495
Definition: DecoData.h:102
int run_id
Definition: DecoData.h:73
int n_fee_prescale
Definition: DecoData.h:89
int n_t_hit
Definition: DecoData.h:99
int n_phys_evt
Definition: DecoData.h:94
int n_phys_evt_bad
Definition: DecoData.h:95
int n_hit_bad
Definition: DecoData.h:100
int n_hit
Definition: DecoData.h:98
int n_spill
Definition: DecoData.h:91
int fpga_enabled[5]
Definition: DecoData.h:77
int n_evt_dec
Definition: DecoData.h:93
int n_v1495_d3ad
Definition: DecoData.h:105
int n_t_hit_bad
Definition: DecoData.h:101
int n_flush_evt_bad
Definition: DecoData.h:97
int n_v1495_d2ad
Definition: DecoData.h:104
int utime_e
Definition: DecoData.h:75
int n_flush_evt
Definition: DecoData.h:96
int n_fee_event
Definition: DecoData.h:88
int n_v1495_d1ad
Definition: DecoData.h:103
int n_run_desc
Definition: DecoData.h:90
int nim_prescale[3]
Definition: DecoData.h:80
int fpga_prescale[5]
Definition: DecoData.h:79
int n_evt_all
Definition: DecoData.h:92
std::string run_desc
Definition: DecoData.h:86
double time_input
In msec.
Definition: DecoData.h:156
unsigned int eos_vme_time
Definition: DecoData.h:149
ScalerDataList list_scaler
Definition: DecoData.h:161
unsigned int bos_coda_id
Definition: DecoData.h:146
unsigned int run_id
Definition: DecoData.h:144
unsigned int spill_id
Definition: DecoData.h:142
double time_map
In msec.
Definition: DecoData.h:158
unsigned int eos_coda_id
Definition: DecoData.h:148
double time_decode
In msec.
Definition: DecoData.h:157
unsigned int bos_vme_time
Definition: DecoData.h:147
unsigned int targ_pos
Definition: DecoData.h:145
SlowControlDataList list_slow_cont
Definition: DecoData.h:160