Class Reference for E1039 Core & Analysis Software
Fun4AllTrackQAv1InputManager.cc
Go to the documentation of this file.
9 #include <fun4all/Fun4AllUtils.h>
10 #include <ffaobjects/RunHeader.h>
12 #include <phool/getClass.h>
13 #include <phool/PHCompositeNode.h>
14 #include <phool/PHDataNode.h>
15 #include <phool/recoConsts.h>
16 #include <cstdlib>
17 #include <memory>
18 #include <TFile.h>
19 #include <TTree.h>
20 using namespace std;
21 
22 Fun4AllTrackQAv1InputManager::Fun4AllTrackQAv1InputManager(const string& name, const string& topnodename)
23  : Fun4AllInputManager(name, "")
24  , segment(-999)
25  , isopen(0)
26  , events_total(0)
27  , events_thisfile(0)
28  , topNodeName(topnodename)
29  , _tree_name("QA_ana")
30  , run_header(nullptr)
31  , event_header(nullptr)
32  , hit_vec(nullptr)
33 {
35  topNode = se->topNode(topNodeName.c_str());
36  PHNodeIterator iter(topNode);
37 
38  PHCompositeNode* runNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "RUN"));
39  if (!runNode) {
40  runNode = new PHCompositeNode("RUN");
41  topNode->addNode(runNode);
42  }
43 
44  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
45  if (!eventNode) {
46  eventNode = new PHCompositeNode("DST");
47  topNode->addNode(eventNode);
48  }
49 
50  run_header = new SQRun_v1();
51  runNode->addNode(new PHIODataNode<PHObject>(run_header, "SQRun", "PHObject"));
52 
53  event_header = new SQEvent_v1();
54  eventNode->addNode(new PHIODataNode<PHObject>(event_header, "SQEvent", "PHObject"));
55 
56  hit_vec = new SQHitVector_v1();
57  eventNode->addNode(new PHIODataNode<PHObject>(hit_vec, "SQHitVector", "PHObject"));
58 
59  syncobject = new SyncObjectv2();
60 }
61 
63 {
64  if(isopen) fileclose();
65  delete syncobject;
66 }
67 
68 int Fun4AllTrackQAv1InputManager::fileopen(const string &filenam)
69 {
70  if (isopen) {
71  cout << "Closing currently open file "
72  << filename
73  << " and opening " << filenam << endl;
74  fileclose();
75  }
76  filename = filenam;
77  if (verbosity > 0) {
78  cout << ThisName << ": opening file " << filename.c_str() << endl;
79  }
80 
81  events_thisfile = 0;
82 
83  _fin = TFile::Open(filenam.c_str(), "READ");
84  if (! _fin->IsOpen()) {
85  cerr << "!!ERROR!! Failed at opening the input file (" << filenam << "). Exit.\n";
86  return -1;
87  }
88  _tin = (TTree*) _fin->Get(_tree_name.c_str());
89  if (!_tin) {
90  cerr << "!!ERROR!! Failed at getting the input tree (" << _tree_name << "). Exit.\n";
91  return -1;
92  }
93 
94  _tin->SetBranchAddress("nHits" , &nHits);
95  _tin->SetBranchAddress("detectorID" , &detectorID);
96  _tin->SetBranchAddress("elementID" , &elementID);
97  _tin->SetBranchAddress("driftDistance", &driftDistance);
98 
99  segment = 0;
100  isopen = 1;
101  AddToFileOpened(filename); // add file to the list of files which were opened
102  return 0;
103 }
104 
106 {
107 readagain:
108  if (!isopen) {
109  if (filelist.empty()) {
110  if (verbosity > 0) {
111  cout << Name() << ": No Input file open" << endl;
112  }
113  return -1;
114  } else {
115  if (OpenNextFile()) {
116  cout << Name() << ": No Input file from filelist opened" << endl;
117  return -1;
118  }
119  }
120  }
121  if (verbosity > 3) {
122  cout << "Getting Event from " << Name() << endl;
123  }
124 
125  if (events_thisfile >= _tin->GetEntries()) {
126  fileclose();
127  goto readagain;
128  }
129 
130  _tin->GetEntry(events_thisfile);
131  events_thisfile++;
132  events_total++;
133 
134  int run_id = 0;
135  int spill_id = 0;
136  int event_id = events_total;
137 
138  SetRunNumber (run_id);
140  mySyncManager->SegmentNumber(spill_id);
142 
143  syncobject->RunNumber (run_id);
145  syncobject->SegmentNumber (spill_id);
146  syncobject->EventNumber (event_id);
147 
148  run_header->set_run_id(run_id);
149 
150  event_header->set_run_id (run_id);
151  event_header->set_spill_id(spill_id);
152  event_header->set_event_id(event_id);
157  for(int i = -16; i < 16; ++i) event_header->set_qie_rf_intensity(i, 0);
158 
159  for (auto i_hit = 0; i_hit < nHits; ++i_hit) {
160  SQHit* hit = new SQHit_v1();
161  hit->set_hit_id(i_hit + 1);
162  hit->set_detector_id(detectorID[i_hit]);
163  hit->set_element_id (elementID [i_hit]);
164  hit->set_tdc_time (0);
165  hit->set_drift_distance(driftDistance[i_hit]);
166  hit->set_in_time(true);
167  hit->set_pos(0);
168  hit_vec->push_back(hit);
169  delete hit;
170  }
171 
172  // check if the local SubsysReco discards this event
174  ResetEvent();
175  goto readagain;
176  }
177 
178  return 0;
179 }
180 
182 {
183  if (!isopen) {
184  cout << Name() << ": fileclose: No Input file open" << endl;
185  return -1;
186  }
187 
188  _fin->Close();
189  isopen = 0;
190 
191  // if we have a file list, move next entry to top of the list
192  // or repeat the same entry again
193  if (!filelist.empty()) {
194  if (repeat) {
195  filelist.push_back(*(filelist.begin()));
196  if (repeat > 0) {
197  repeat--;
198  }
199  }
200  filelist.pop_front();
201  }
202 
203  return 0;
204 }
205 
206 void
207 Fun4AllTrackQAv1InputManager::Print(const string &what) const
208 {
210  return ;
211 }
212 
213 int
215 {
216  while (!filelist.empty()) {
217  list<string>::const_iterator iter = filelist.begin();
218  if (verbosity) {
219  cout << PHWHERE << " opening next file: " << *iter << endl;
220  }
221  if (fileopen(*iter)) {
222  cout << PHWHERE << " could not open file: " << *iter << endl;
223  filelist.pop_front();
224  } else {
225  return 0;
226  }
227  }
228  return -1;
229 }
230 
231 int
233 {
234  syncobject->Reset();
235  return 0;
236 }
237 
238 int
240 {
241  cerr << "!!ERROR!! PushBackEvents(): Not implemented yet." << endl;
242  return -1;
243 }
244 
245 int
247 {
248  // here we copy the sync object from the current file to the
249  // location pointed to by mastersync. If mastersync is a 0 pointer
250  // the syncobject is cloned. If mastersync allready exists the content
251  // of syncobject is copied
252  if (!(*mastersync)) {
253  if (syncobject) *mastersync = syncobject->clone();
254  } else {
255  *(*mastersync) = *syncobject; // copy syncobject content
256  }
258 }
259 
260 int
262 {
263  if (!mastersync) {
264  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
265  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
266  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
267  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
268  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
270  }
271  int iret = syncobject->Different(mastersync);
272  if (iret) {
273  cout << "big problem" << endl;
274  exit(1);
275  }
277 }
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)
void Print(const std::string &what="ALL") const
int GetSyncObject(SyncObject **mastersync)
Fun4AllTrackQAv1InputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int fileopen(const std::string &filenam)
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
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_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
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 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