Class Reference for E1039 Core & Analysis Software
Fun4AllRUSInputManager.cc
Go to the documentation of this file.
1  #include "Fun4AllRUSInputManager.h"
13  #include <fun4all/Fun4AllServer.h>
16  #include <fun4all/Fun4AllUtils.h>
17  #include <fun4all/PHTFileServer.h>
18  #include <ffaobjects/RunHeader.h>
19  #include <ffaobjects/SyncObjectv2.h>
20  #include <phool/getClass.h>
21  #include <phool/PHCompositeNode.h>
22  #include <phool/PHDataNode.h>
23  #include <phool/recoConsts.h>
24  #include <cstdlib>
25  #include <memory>
26  #include <TFile.h>
27  #include <TTree.h>
28 
29 using namespace std;
30 
31 //Constructor
32 Fun4AllRUSInputManager::Fun4AllRUSInputManager(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  _fin(nullptr),
45  _tin(nullptr)
46 {
48  topNode = se->topNode(topNodeName.c_str());
49  PHNodeIterator iter(topNode);
50 
51  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
52  if (!runNode) {
53  runNode = new PHCompositeNode("RUN");
54  topNode->addNode(runNode);
55  }
56 
57  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
58  if (!eventNode) {
59  eventNode = new PHCompositeNode("DST");
60  topNode->addNode(eventNode);
61  }
62 
63  run_header = new SQRun_v1();
64  PHIODataNode<PHObject>* runHeaderNode = new PHIODataNode<PHObject>(run_header, "SQRun", "PHObject");
65  runNode->addNode(runHeaderNode);
66 
67  spill_map = new SQSpillMap_v1();
68  PHIODataNode<PHObject>* spillNode = new PHIODataNode<PHObject>(spill_map, "SQSpillMap", "PHObject");
69  runNode->addNode(spillNode);
70 
71  event_header = new SQEvent_v1();
72  PHIODataNode<PHObject>* eventHeaderNode = new PHIODataNode<PHObject>(event_header, "SQEvent", "PHObject");
73  eventNode->addNode(eventHeaderNode);
74 
75  hit_vec = new SQHitVector_v1();
76  PHIODataNode<PHObject>* hitNode = new PHIODataNode<PHObject>(hit_vec, "SQHitVector", "PHObject");
77  eventNode->addNode(hitNode);
78  syncobject = new SyncObjectv2();
79 }
80 
82  {
83  if(isopen)
84  {
85  fileclose();
86  }
87  delete syncobject;
88  }
89 
92  SQSpill* spill = spill_map->get(spillID);
93  if(!spill) {
94  spill = new SQSpill_v2();
95  spill->set_spill_id(spillID);
96  spill->set_run_id(runID);
97  spill_map->insert(spill);
99  }
103  for(int i = -16; i <= 16; ++i) {event_header->set_qie_rf_intensity(i, rfIntensity[i+16]);} // need to be added
104  // Apply the FPGA triggers to the event header
110  // Apply the NIM triggers to the event header
118  for (size_t i = 0; i < elementID->size(); ++i) {
119  SQHit* hit = new SQHit_v1();
120  hit->set_hit_id(hitID->at(i));
121  hit->set_detector_id(detectorID->at(i));
122  hit->set_element_id(elementID->at(i));
123  hit->set_tdc_time(tdcTime->at(i));
124  hit->set_drift_distance(driftDistance->at(i));
125  hit_vec->push_back(hit);
126  }
127 }
128 
129 int Fun4AllRUSInputManager::fileopen(const std::string &filenam) {
130  if (isopen) {
131  std::cout << "Closing currently open file "
132  << filename
133  << " and opening " << filenam << std::endl;
134  fileclose();
135  }
136  filename = filenam;
137 
138 
139  if (verbosity > 0) {
140  std::cout << ThisName << ": opening file " << filename.c_str() << std::endl;
141  }
142 
143  events_thisfile = 0;
144 
145  _fin = TFile::Open(filenam.c_str(), "READ"); // Open the file dynamically
146  if (!_fin || _fin->IsZombie()) {
147  std::cerr << "!!ERROR!! Failed to open file " << filenam << std::endl;
148  }
149 
150  _tin = (TTree*) _fin->Get(_tree_name.c_str());
151  if (!_tin) {
152  std::cerr << "!!ERROR!! Tree " << _tree_name << " not found in file " << filenam << std::endl;
153  return -1;
154  }
155  _tin->SetBranchAddress("eventID", &eventID);
156  _tin->SetBranchAddress("runID", &runID);
157  _tin->SetBranchAddress("spillID", &spillID);
158  _tin->SetBranchAddress("rfID", &rfID);
159  _tin->SetBranchAddress("turnID", &turnID);
160  _tin->SetBranchAddress("fpgaTrigger", fpgaTrigger);
161  _tin->SetBranchAddress("nimTrigger", nimTrigger);
162  _tin->SetBranchAddress("rfIntensity", rfIntensity);
163 
164  _tin->SetBranchAddress("hitID", &hitID);
165  _tin->SetBranchAddress("detectorID", &detectorID);
166  _tin->SetBranchAddress("elementID", &elementID);
167  _tin->SetBranchAddress("driftDistance", &driftDistance);
168  _tin->SetBranchAddress("tdcTime", &tdcTime);
169 
170  segment = 0;
171  isopen = 1;
172  AddToFileOpened(filenam); // Add file to the list of opened files
173  return 0;
174 }
175 
177  readagain:
178  if (!isopen) {
179  if (filelist.empty()) {
180  if (verbosity > 0) {
181  std::cout << Name() << ": No Input file open" << std::endl;
182  }
183  return -1;
184  } else {
185  if (OpenNextFile()) {
186  std::cout << Name() << ": No Input file from filelist opened" << std::endl;
187  return -1;
188  }
189  }
190  }
191 
192  if (verbosity > 3) {
193  std::cout << "Getting Event from " << Name() << std::endl;
194  }
195 
196  if (events_thisfile >= _tin->GetEntries()) {
197  fileclose();
198  goto readagain;
199  }
200 
201  _tin->GetEntry(events_thisfile);
202  events_thisfile++;
203  events_total++;
204 
209 
214  VectToE1039();
216  ResetEvent();
217  goto readagain;
218  }
219  return 0;
220 }
221 
223 {
224  syncobject->Reset();
225  return 0;
226 }
227 
229  {
230  if (!isopen) {
231  cout << Name() << ": fileclose: No Input file open" << endl;
232  return -1;
233  }
234 
235  _fin->Close();
236  isopen = 0;
237 
238  // if we have a file list, move next entry to top of the list
239  // or repeat the same entry again
240  if (!filelist.empty()) {
241  if (repeat) {
242  filelist.push_back(*(filelist.begin()));
243  if (repeat > 0) {
244  repeat--;
245  }
246  }
247  filelist.pop_front();
248  }
249 
250  return 0;
251  }
252 
253  void
254  Fun4AllRUSInputManager::Print(const string &what) const
255  {
257  return ;
258  }
259 
260  int
262  {
263  while (!filelist.empty())
264  {
265  list<string>::const_iterator iter = filelist.begin();
266  if (verbosity)
267  {
268  cout << PHWHERE << " opening next file: " << *iter << endl;
269  }
270  if (fileopen(*iter))
271  {
272  cout << PHWHERE << " could not open file: " << *iter << endl;
273  filelist.pop_front();
274  }
275  else
276  {
277  return 0;
278  }
279 
280  }
281  return -1;
282  }
283 
285  {
286  cerr << "!!ERROR!! PushBackEvents(): Not implemented yet." << endl;
287  // PushBackEvents is supposedly pushing events back on the stack which works
288  // easily with root trees (just grab a different entry) but hard in these HepMC ASCII files.
289  // A special case is when the synchronization fails and we need to only push back a single
290  // event. In this case we save the evt pointer as save_evt which is used in the run method
291  // instead of getting the next event.
292  // if (i > 0)
293  // {
294  // if (i == 1 && evt) // check on evt pointer makes sure it is not done from the cmd line
295  // {
296  // save_evt = evt;
297  // return 0;
298  // }
299  // cout << PHWHERE << ThisName
300  // << " Fun4AllRUSInputManager cannot push back " << i << " events into file"
301  // << endl;
302  // return -1;
303  // }
304  // if (!parser->coda)
305  // {
306  // cout << PHWHERE << ThisName
307  // << " no file open" << endl;
308  // return -1;
309  // }
310  // Skipping events is implemented as
311  // pushing a negative number of events on the stack, so in order to implement
312  // the skipping of events we read -i events.
313  // int nevents = -i; // negative number of events to push back -> skip num events
314  // int errorflag = 0;
315  // while (nevents > 0 && ! errorflag)
316  // {
317  // int * data_ptr = nullptr;
318  // unsigned int coda_id = 0;
319  // if(parser->coda->NextCodaEvent(coda_id, data_ptr))
320  // evt = new EVIO_Event(data_ptr);
321  // if (! evt)
322  // {
323  // cout << "Error after skipping " << i - nevents
324  // << " file exhausted?" << endl;
325  // errorflag = -1;
326  // fileclose();
327  // }
328  // else
329  // {
330  // if (verbosity > 3)
331  // {
332  // //TODO implement this
333  // //cout << "Skipping evt no: " << evt->getEvtSequence() << endl;
334  // }
335  // }
336  // delete evt;
337  // nevents--;
338  // }
339  // return errorflag;
340  return -1;
341  }
342 
343  int
345  {
346  // here we copy the sync object from the current file to the
347  // location pointed to by mastersync. If mastersync is a 0 pointer
348  // the syncobject is cloned. If mastersync allready exists the content
349  // of syncobject is copied
350  if (!(*mastersync))
351  {
352  if (syncobject) *mastersync = syncobject->clone();
353  }
354  else
355  {
356  *(*mastersync) = *syncobject; // copy syncobject content
357  }
359  }
360 
361  int
363  {
364  if (!mastersync)
365  {
366  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
367  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
368  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
369  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
370  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
372  }
373  int iret = syncobject->Different(mastersync);
374  if (iret)
375  {
376  cout << "big problem" << endl;
377  exit(1);
378  }
380  }
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)
std::vector< int > * hitID
std::vector< int > * elementID
std::vector< int > * detectorID
int SyncIt(const SyncObject *mastersync)
std::vector< double > * driftDistance
int fileopen(const std::string &filename)
std::vector< double > * tdcTime
int run(const int nevents=0)
int GetSyncObject(SyncObject **mastersync)
void Print(const std::string &what="ALL") const
Fun4AllRUSInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
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_drift_distance(const float a)
Definition: SQHit.h:58
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