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