Class Reference for E1039 Core & Analysis Software
SQReco.cxx
Go to the documentation of this file.
1 #include "SQReco.h"
2 
3 #include "KalmanFastTracking.h"
4 #include "EventReducer.h"
5 #include "UtilSRawEvent.h"
6 
7 #include <phfield/PHFieldConfig_v3.h>
8 #include <phfield/PHFieldUtility.h>
9 #include <phgeom/PHGeomUtility.h>
10 
11 #include <interface_main/SQHit.h>
20 
22 #include <fun4all/PHTFileServer.h>
23 #include <phool/PHNodeIterator.h>
24 #include <phool/PHIODataNode.h>
25 #include <phool/getClass.h>
26 #include <phool/recoConsts.h>
27 #include <phgeom/PHGeomTGeo.h>
28 
29 #include <TFile.h>
30 #include <TTree.h>
31 
32 #include <cstring>
33 #include <cmath>
34 #include <cfloat>
35 #include <cassert>
36 #include <stdexcept>
37 #include <limits>
38 #include <memory>
39 #include <fstream>
40 #include <exception>
41 #include <boost/lexical_cast.hpp>
42 
43 #ifdef _DEBUG_ON
44 # define LogDebug(exp) std::cout << "DEBUG: " << __FUNCTION__ <<": "<< __LINE__ << ": " << exp << std::endl
45 #else
46 # define LogDebug(exp)
47 #endif
48 
49 SQReco::SQReco(const std::string& name):
50  SubsysReco(name),
51  _input_type(SQReco::E1039),
52  _fitter_type(SQReco::KFREF),
53  _output_list_idx(0),
54  _enable_eval(false),
55  _eval_file_name("eval.root"),
56  _eval_tree(nullptr),
57  _tracklets(nullptr),
58  _enable_eval_dst(false),
59  _tracklet_vector(nullptr),
60  _evt_reducer_opt(""),
61  _fastfinder(nullptr),
62  _eventReducer(nullptr),
63  _enable_KF(true),
64  _kfitter(nullptr),
65  _gfitter(nullptr),
66  _phfield(nullptr),
67  _gfield(nullptr),
68  _event(0),
69  _run_header(nullptr),
70  _spill_map(nullptr),
71  _event_header(nullptr),
72  _hit_vector(nullptr),
73  _triggerhit_vector(nullptr),
74  _legacy_rec_container(true),
75  _rawEvent(nullptr),
76  _recEvent(nullptr),
77  _recTrackVec(nullptr),
78  _use_geom_io_node(false),
79  _geom_file_name(""),
80  _t_geo_manager(nullptr)
81 {
83  _eval_listIDs.clear();
84 }
85 
87 {}
88 
90 {
92 }
93 
95 {
96  if(is_eval_enabled())
97  {
98  InitEvalTree();
99  ResetEvalVars();
100  }
101 
102  int ret = MakeNodes(topNode);
103  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
104 
105  ret = GetNodes(topNode);
106  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
107 
108  ret = InitField(topNode);
109  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
110 
111  ret = InitGeom(topNode);
112  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
113 
115 
116  if(_evt_reducer_opt == "none") //Meaning we disable the event reducer
117  {
118  _eventReducer = nullptr;
119  }
120  else if(_evt_reducer_opt == "") //Meaning we initialize the event reducer by opts
121  {
122  _evt_reducer_opt = rc->get_CharFlag("EventReduceOpts");
123 
125  }
126  else
127  {
129  }
130 
131  //Initialize the fitter
132  if(_enable_KF)
133  {
135  {
137  _kfitter->setControlParameter(50, 0.001);
138  }
139  else
140  {
142  if(_fitter_type == SQReco::KF)
143  {
144  _gfitter->init(_gfield, "KalmanFitter");
145  }
146  else if(_fitter_type == SQReco::KFREF)
147  {
148  _gfitter->init(_gfield, "KalmanFitterRefTrack");
149  }
150  else if(_fitter_type == SQReco::DAF)
151  {
152  _gfitter->init(_gfield, "DafSimple");
153  }
154  else if(_fitter_type == SQReco::DAFREF)
155  {
156  _gfitter->init(_gfield, "DafRef");
157  }
158 
159  //TODO: common settings for sqfitter
160  }
161  }
162 
164 }
165 
167 {
168  if(Verbosity() > 1) std::cout << "SQReco::InitField" << std::endl;
169 
170  std::unique_ptr<PHFieldConfig> default_field_cfg(new PHFieldConfig_v3(rc->get_CharFlag("fMagFile"), rc->get_CharFlag("kMagFile"), rc->get_DoubleFlag("FMAGSTR"), rc->get_DoubleFlag("KMAGSTR"), 5.));
171  _phfield = PHFieldUtility::GetFieldMapNode(default_field_cfg.get(), topNode, 0);
172 
174  {
175  std::cout << "PHField check: " << "-------" << std::endl;
176  std::ofstream field_scan("field_scan.csv");
177  _phfield->identify(field_scan);
178  field_scan.close();
179  }
180 
183 }
184 
186 {
187  if(Verbosity() > 1) std::cout << "SQReco::InitGeom" << std::endl;
188 
189  if (_geom_file_name != "")
190  {
191  if(Verbosity() > 1) std::cout << "SQReco::InitGeom - create geom from " << _geom_file_name << std::endl;
192  if (_use_geom_io_node)
193  {
194  std::cout << "SQReco::InitGeom - Both 'geom_file_name' and 'use_geom_io_node' are active. Use only one." << std::endl;
196  }
198  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
199  }
200  else if (_use_geom_io_node)
201  {
202  if(Verbosity() > 1) std::cout << "SQReco::InitGeom - use geom from RUN node tree." << std::endl;
203  PHGeomTGeo* node = PHGeomUtility::LoadFromIONode(topNode);
204  if (! node)
205  {
206  std::cout << "SQReco::InitGeom - Failed at loading the GEOMETRY_IO node." << std::endl;
208  }
209  }
210  else
211  {
212  if(Verbosity() > 1) std::cout << "SQReco::InitGeom - use geom from PAR node tree." << std::endl;
213  PHGeomTGeo* dstGeom = PHGeomUtility::GetGeomTGeoNode(topNode, true); //hacky way to bypass PHGeoUtility's lack of exception throwing
214  if(!dstGeom->isValid())
215  {
216  std::cout << "SQReco::InitGeom - Failed at loading the GEOMETRY node." << std::endl;
218  }
219  }
220 
223 }
224 
226 {
229  return 0;
230 }
231 
233 {
236 
238 
240  {
241  LogInfo("SRawEvent before the Reducer");
242  _rawEvent->identify();
243  }
244 
245  if(_eventReducer != nullptr)
246  {
249  }
250 
252  {
253  LogInfo("SRawEvent after the Reducer");
254  _rawEvent->identify();
255  }
256 }
257 
259 {
260  if(_input_type == SQReco::E1039) {
261  delete _rawEvent;
262  _rawEvent = 0;
263  }
264  ++_event;
265 }
266 
268 {
269  for(Hit hit : sraw_event->getAllHits())
270  {
271  size_t idx = _m_hitID_idx[hit.index];
272  SQHit* sq_hit = _hit_vector->at(idx);
273 
274  sq_hit->set_tdc_time(hit.tdcTime);
275  sq_hit->set_drift_distance(hit.driftDistance);
276  sq_hit->set_pos(hit.pos);
277  sq_hit->set_in_time(hit.isInTime());
278  sq_hit->set_hodo_mask(hit.isHodoMask());
279  sq_hit->set_trigger_mask(hit.isTriggerMask());
280  }
281 
282  return 0;
283 }
284 
286 {
287  //Needed for E1039 since we switched to a more generic interface
288  //SRawEvent is still needed so that the code can be used for E906 as well
289  SRawEvent* sraw_event = new SRawEvent();
290  _m_hitID_idx.clear();
291  _m_trghitID_idx.clear();
292 
293  if(!UtilSRawEvent::SetEvent(sraw_event, _event_header))
294  {
295  sraw_event->setEventInfo(0, 0, _event); // overwrite event ID
296  }
297 
298  //Get target position
299  if(_spill_map)
300  {
301  UtilSRawEvent::SetSpill(sraw_event, _spill_map->get( sraw_event->getSpillID() ));
302  }
303 
304  //Get beam information - QIE -- not implemented yet
305 
306  //Get trigger hits - TriggerHit
309 
310  return sraw_event;
311 }
312 
314 {
315  LogDebug("Entering SQReco::process_event: " << _event);
316 
318 
319  int finderstatus = _fastfinder->setRawEvent(_rawEvent);
321  {
323  _recEvent->setRecStatus(finderstatus);
324  }
326 
327  int nTracklets = 0;
328  int nFittedTracks = 0;
329  std::list<Tracklet>& rec_tracklets = _fastfinder->getFinalTracklets();
330  for(auto iter = rec_tracklets.begin(); iter != rec_tracklets.end(); ++iter)
331  {
332  iter->calcChisq();
333  if(Verbosity() > Fun4AllBase::VERBOSITY_A_LOT) iter->print();
334 
335  bool fitOK = false;
336  if(_enable_KF)
337  {
339  fitOK = fitTrackCand(*iter, _kfitter);
340  else
341  fitOK = fitTrackCand(*iter, _gfitter);
342  }
343 
344  if(!fitOK)
345  {
346  SRecTrack recTrack = iter->getSRecTrack(_enable_KF && (_fitter_type == SQReco::LEGACY));
347  recTrack.setKalmanStatus(-1);
348 
349  fillRecTrack(recTrack);
350  }
351  else
352  {
353  ++nFittedTracks;
354  }
355 
356  if(is_eval_enabled()) new((*_tracklets)[nTracklets]) Tracklet(*iter);
358  ++nTracklets;
359  }
360  LogDebug("Leaving SQReco::process_event: " << _event << ", finder status " << finderstatus << ", " << nTracklets << " track candidates, " << nFittedTracks << " fitted tracks");
361 
362  //add additional eval information if applicable
364  {
365  for(unsigned int i = 0; i < _eval_listIDs.size(); ++i)
366  {
367  std::list<Tracklet>& eval_tracklets = _fastfinder->getTrackletList(_eval_listIDs[i]);
368  for(auto iter = eval_tracklets.begin(); iter != eval_tracklets.end(); ++iter)
369  {
370  if(is_eval_enabled())
371  {
372  new((*_tracklets)[nTracklets]) Tracklet(*iter);
373  ++nTracklets;
374  }
375 
377  }
378  }
379  }
380 
381  if(is_eval_enabled() && nTracklets > 0) _eval_tree->Fill();
382 
384 
386 }
387 
389 {
390  if(Verbosity() >= Fun4AllBase::VERBOSITY_SOME) std::cout << "SQReco::End" << std::endl;
391  if(is_eval_enabled())
392  {
394  _eval_tree->Write();
395  }
396 
397  delete _fastfinder;
398  if(_gfitter != nullptr) delete _gfitter;
399 
401 }
402 
404 {
405  KalmanTrack kmtrk;
406  kmtrk.setTracklet(tracklet);
407 
408  if(kmtrk.getNodeList().empty())
409  {
410  LogDebug("kmtrk nodelist empty");
411  return false;
412  }
413 
414  if(_kfitter->processOneTrack(kmtrk) == 0)
415  {
416  LogDebug("kFitter failed to converge");
417  return false;
418  }
419 
420  _kfitter->updateTrack(kmtrk);//update after fitting
421 
422  if(!kmtrk.isValid())
423  {
424  LogDebug("kmtrk quality cut failed");
425  return false;
426  }
427 
428  SRecTrack strack = kmtrk.getSRecTrack();
429 
430  //Set trigger road ID
431  TriggerRoad road(tracklet);
432  strack.setTriggerRoad(road.getRoadID());
433 
434  //Set prop tube slopes
435  strack.setNHitsInPT(tracklet.seg_x.getNHits(), tracklet.seg_y.getNHits());
436  strack.setPTSlope(tracklet.seg_x.a, tracklet.seg_y.a);
437  strack.setKalmanStatus(1);
438  fillRecTrack(strack);
439  return true;
440 }
441 
443 {
444  SQGenFit::GFTrack gftrk;
445  gftrk.setTracklet(tracklet);
446 
447  int fitOK = _gfitter->processTrack(gftrk);
448  if(fitOK != 0)
449  {
450  LogDebug("gFitter failed to converge.");
451  return false;
452  }
453 
455  {
456  gftrk.postFitUpdate();
457  gftrk.print(2);
458  }
459 
460  //TODO: A gtrack quality cut?
461 
462  SRecTrack strack = gftrk.getSRecTrack();
463 
464  //Set trigger road ID
465  TriggerRoad road(tracklet);
466  strack.setTriggerRoad(road.getRoadID());
467 
468  //Set prop tube slopes
469  strack.setNHitsInPT(tracklet.seg_x.getNHits(), tracklet.seg_y.getNHits());
470  strack.setPTSlope(tracklet.seg_x.a, tracklet.seg_y.a);
471 
472  fillRecTrack(strack);
473  return true;
474 }
475 
477 {
478  PHTFileServer::get().open(_eval_file_name.Data(), "RECREATE");
479 
480  _tracklets = new TClonesArray("Tracklet");
481 
482  _eval_tree = new TTree("eval", "eval");
483  _eval_tree->Branch("eventID", &_event, "eventID/I");
484  _eval_tree->Branch("tracklets", &_tracklets, 256000, 99);
485  _tracklets->BypassStreamer();
486 
487  return 0;
488 }
489 
491 {
492  _tracklets->Clear();
493  return 0;
494 }
495 
497 {
499  _recEvent->insertTrack(recTrack);
500  else
501  _recTrackVec->push_back(&recTrack);
502 }
503 
505 {
506  PHNodeIterator iter(topNode);
507  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
508  if(!eventNode)
509  {
510  LogInfo("No DST node, create one");
511  eventNode = new PHCompositeNode("DST");
512  topNode->addNode(eventNode);
513  }
514 
516  {
517  _recEvent = findNode::getClass<SRecEvent>(topNode, "SRecEvent"); // Could exist when the tracking is re-done.
518  if(!_recEvent) {
519  _recEvent = new SRecEvent();
520  eventNode->addNode(new PHIODataNode<PHObject>(_recEvent, "SRecEvent", "PHObject"));
521  if(Verbosity() >= Fun4AllBase::VERBOSITY_SOME) LogInfo("DST/SRecEvent Added");
522  }
523  }
524  else
525  {
527  PHIODataNode<PHObject>* recEventNode = new PHIODataNode<PHObject>(_recTrackVec, "SQRecTrackVector", "PHObject");
528  eventNode->addNode(recEventNode);
529  if(Verbosity() >= Fun4AllBase::VERBOSITY_SOME) LogInfo("DST/SQRecTrackVector Added");
530  }
531 
532  if(_enable_eval_dst)
533  {
534  _tracklet_vector = findNode::getClass<TrackletVector>(topNode, "TrackletVector"); // Could exist when the tracking is re-done.
535  if(!_tracklet_vector) {
538  eventNode->addNode(new PHIODataNode<PHObject>(_tracklet_vector, "TrackletVector", "PHObject"));
539  if(Verbosity() >= Fun4AllBase::VERBOSITY_SOME) LogInfo("DST/TrackletVector Added");
540  }
541  }
542 
544 }
545 
547 {
549  {
550  _run_header = findNode::getClass<SQRun>(topNode, "SQRun");
551  if(!_run_header)
552  {
553  if(Verbosity() > 2) LogDebug("!_run_header");
554  //return Fun4AllReturnCodes::ABORTEVENT;
555  }
556 
557  _spill_map = findNode::getClass<SQSpillMap>(topNode, "SQSpillMap");
558  if(!_spill_map)
559  {
560  if(Verbosity() > 2) LogDebug("!_spill_map");
561  //return Fun4AllReturnCodes::ABORTEVENT;
562  }
563 
564  _event_header = findNode::getClass<SQEvent>(topNode, "SQEvent");
565  if(!_event_header)
566  {
567  if(Verbosity() > 2) LogDebug("!_event_header");
568  //return Fun4AllReturnCodes::ABORTEVENT;
569  }
570 
571  _hit_vector = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
572  if(!_hit_vector)
573  {
574  LogDebug("!_hit_vector");
576  }
577 
578  _triggerhit_vector = findNode::getClass<SQHitVector>(topNode, "SQTriggerHitVector");
579  if(!_triggerhit_vector)
580  {
581  if(Verbosity() > 2) LogDebug("!_triggerhit_vector");
582  //return Fun4AllReturnCodes::ABORTEVENT;
583  }
584  }
585  else
586  {
587  _rawEvent = findNode::getClass<SRawEvent>(topNode, "SRawEvent");
588  if(_rawEvent)
589  {
590  if(Verbosity() > 0) LogInfo("Using SRawEvent as input for E906-like data input");
591  }
592  }
593 
595 }
596 
597 void SQReco::add_eval_list(int listID)
598 {
599  if(std::find(_eval_listIDs.begin(), _eval_listIDs.end(), listID) == _eval_listIDs.end())
600  {
601  _eval_listIDs.push_back(listID);
602  }
603 }
#define LogInfo(message)
Definition: DbSvc.cc:15
TFile clean handling.
#define LogDebug(exp)
Definition: SQReco.cxx:46
int reduceEvent(SRawEvent *rawEvent)
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
Definition of hit structure.
Definition: SRawEvent.h:35
void setOutputListIndex(unsigned int i)
Set the index of the final output tracklet list.
std::list< Tracklet > & getTrackletList(int i)
std::list< Tracklet > & getFinalTracklets()
Final output.
virtual int setRawEvent(SRawEvent *event_input)
int processOneTrack(KalmanTrack &_track)
void updateTrack(KalmanTrack &_track)
void setControlParameter(int nMaxIteration, double tolerance)
Set the convergence control parameters.
Definition: KalmanFitter.h:31
SRecTrack getSRecTrack()
Output to SRecTrack.
std::list< Node > & getNodeList()
Definition: KalmanTrack.h:84
void setTracklet(Tracklet &tracklet, bool wildseedcov=true)
Definition: KalmanTrack.cxx:62
bool isValid()
Self check to see if it is null.
Definition: KalmanTrack.cxx:96
PHBoolean addNode(PHNode *)
PHFieldConfig_v3 implements field configuration information for input a field map file.
static PHField * GetFieldMapNode(const PHFieldConfig *default_config=nullptr, PHCompositeNode *topNode=nullptr, const int verbosity=0)
Get transient PHField from DST nodes. If not found, make a new one based on default_config.
virtual void identify(std::ostream &os=std::cout) const
Definition: PHField.h:30
virtual double get_DoubleFlag(const std::string &name) const
Definition: PHFlag.cc:49
virtual const std::string get_CharFlag(const std::string &flag) const
Definition: PHFlag.cc:13
PHGeomTGeo provide run-time access to TGeoManger. It is transient object and it shall NOT be saved to...
Definition: PHGeomTGeo.h:25
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHGeomTGeo.cc:100
static int ImportGeomFile(PHCompositeNode *topNode, const std::string &geometry_file)
TGeo ROOT/GDML/Macro file -> DST node with automatic file type discrimination based on file names.
static PHGeomTGeo * GetGeomTGeoNode(PHCompositeNode *topNode, bool build_new=true)
Get non-persistent PHGeomTGeo from DST nodes. If not found, make a new one.
static TGeoManager * GetTGeoManager(PHCompositeNode *topNode)
Main user interface: DST node -> TGeoManager for downstream use.
static PHGeomTGeo * LoadFromIONode(PHCompositeNode *topNode)
PHNode * findFirst(const std::string &, const std::string &)
void SplitLevel(const int i)
Definition: PHObject.h:42
static PHTFileServer & get(void)
return reference to class singleton
Definition: PHTFileServer.h:36
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
int getNHits() const
void init(GFField *field, const TString &fitter_choice="KalmanFitterRefTrack")
Definition: GFFitter.cxx:29
int processTrack(GFTrack &track, bool display=false)
Definition: GFFitter.cxx:50
void print(unsigned int debugLvl=0)
Definition: GFTrack.cxx:467
void postFitUpdate(bool updateMeasurements=true)
Definition: GFTrack.cxx:385
SRecTrack getSRecTrack()
Definition: GFTrack.cxx:394
void setTracklet(Tracklet &tracklet, double z_reference=590., bool wildseedcov=false)
Definition: GFTrack.cxx:338
virtual const SQHit * at(const size_t idkey) const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void set_pos(const float a)
Definition: SQHit.h:61
virtual void set_trigger_mask(const bool a)
Definition: SQHit.h:97
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
virtual void set_hodo_mask(const bool a)
Definition: SQHit.h:94
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
Definition: SQReco.h:43
TGeoManager * _t_geo_manager
Definition: SQReco.h:153
@ E1039
Definition: SQReco.h:45
std::string _geom_file_name
Definition: SQReco.h:152
SQReco::FITTER_TYPE _fitter_type
Definition: SQReco.h:107
SQTrackVector * _recTrackVec
Definition: SQReco.h:149
SQReco::INPUT_TYPE _input_type
Definition: SQReco.h:106
SQGenFit::GFField * _gfield
Definition: SQReco.h:129
virtual int InitFastTracking()
Definition: SQReco.cxx:225
std::map< int, size_t > _m_trghitID_idx
Definition: SQReco.h:144
bool fitTrackCand(Tracklet &tracklet, KalmanFitter *fitter)
Definition: SQReco.cxx:403
int _output_list_idx
Definition: SQReco.h:109
SRawEvent * _rawEvent
Definition: SQReco.h:147
SQHitVector * _triggerhit_vector
Definition: SQReco.h:140
std::map< int, size_t > _m_hitID_idx
Definition: SQReco.h:143
SQSpillMap * _spill_map
Definition: SQReco.h:136
@ KF
Definition: SQReco.h:46
@ DAF
Definition: SQReco.h:46
@ KFREF
Definition: SQReco.h:46
@ DAFREF
Definition: SQReco.h:46
@ LEGACY
Definition: SQReco.h:46
int updateHitInfo(SRawEvent *sraw_event)
Definition: SQReco.cxx:267
void ProcessEventPrep()
Definition: SQReco.cxx:232
virtual int GetNodes(PHCompositeNode *topNode)
Definition: SQReco.cxx:546
virtual int process_event(PHCompositeNode *topNode)
Definition: SQReco.cxx:313
TClonesArray * _tracklets
Definition: SQReco.h:114
SQEvent * _event_header
Definition: SQReco.h:138
virtual int MakeNodes(PHCompositeNode *topNode)
Definition: SQReco.cxx:504
SRecEvent * _recEvent
Definition: SQReco.h:148
virtual int InitGeom(PHCompositeNode *topNode)
Definition: SQReco.cxx:185
PHField * _phfield
Definition: SQReco.h:128
bool _use_geom_io_node
Definition: SQReco.h:151
bool _enable_eval_dst
Definition: SQReco.h:117
TrackletVector * _tracklet_vector
Definition: SQReco.h:118
size_t _event
Definition: SQReco.h:133
virtual int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SQReco.cxx:388
int InitEvalTree()
Definition: SQReco.cxx:476
void ProcessEventFinish()
Definition: SQReco.cxx:258
TString _evt_reducer_opt
Definition: SQReco.h:120
SRawEvent * BuildSRawEvent()
Definition: SQReco.cxx:285
KalmanFitter * _kfitter
Definition: SQReco.h:125
SQReco(const std::string &name="SQReco")
Definition: SQReco.cxx:49
virtual ~SQReco()
Definition: SQReco.cxx:86
std::vector< int > _eval_listIDs
Definition: SQReco.h:115
void add_eval_list(int listID)
Definition: SQReco.cxx:597
SQHitVector * _hit_vector
Definition: SQReco.h:139
virtual int InitRun(PHCompositeNode *topNode)
Definition: SQReco.cxx:94
virtual int Init(PHCompositeNode *topNode)
Definition: SQReco.cxx:89
bool _legacy_rec_container
Definition: SQReco.h:146
SQRun * _run_header
Definition: SQReco.h:135
int ResetEvalVars()
Definition: SQReco.cxx:490
bool is_eval_dst_enabled() const
Definition: SQReco.h:76
bool _enable_KF
Definition: SQReco.h:124
virtual int InitField(PHCompositeNode *topNode)
Definition: SQReco.cxx:166
bool is_eval_enabled() const
Definition: SQReco.h:74
TTree * _eval_tree
Definition: SQReco.h:113
recoConsts * rc
Definition: SQReco.h:131
EventReducer * _eventReducer
Definition: SQReco.h:122
TString _eval_file_name
Definition: SQReco.h:112
KalmanFastTracking * _fastfinder
Definition: SQReco.h:121
void fillRecTrack(SRecTrack &recTrack)
Definition: SQReco.cxx:496
SQGenFit::GFFitter * _gfitter
Definition: SQReco.h:126
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 void push_back(const SQTrack *trk)=0
Int_t getSpillID()
Definition: SRawEvent.h:151
void identify(std::ostream &os=std::cout) const
PHObject virtual overloads.
Definition: SRawEvent.h:103
std::vector< Hit > & getAllHits()
Definition: SRawEvent.h:141
void setEventInfo(Int_t runID, Int_t spillID, Int_t eventID)
Sets.
Definition: SRawEvent.cxx:124
void setRecStatus(int status)
Definition: SRecEvent.h:432
void insertTrack(SRecTrack trk)
Insert tracks.
Definition: SRecEvent.h:466
void setRawEvent(SRawEvent *rawEvent)
directly setup everything by raw event
Definition: SRecEvent.cxx:764
void setNHitsInPT(Int_t nHitsX, Int_t nHitsY)
Definition: SRecEvent.h:226
void setPTSlope(Double_t slopeX, Double_t slopeY)
Prop. tube muon ID info.
Definition: SRecEvent.h:225
void setTriggerRoad(Int_t roadID)
Trigger road info.
Definition: SRecEvent.h:221
void setKalmanStatus(Int_t status)
Definition: SRecEvent.h:148
void push_back(const Tracklet *tracklet)
PropSegment seg_x
Definition: FastTracklet.h:231
PropSegment seg_y
Definition: FastTracklet.h:232
static recoConsts * instance()
Definition: recoConsts.cc:7
bool SetTriggerHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetEvent(SRawEvent *sraw, const SQEvent *evt, const bool do_assert=false)
bool SetHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetSpill(SRawEvent *sraw, const SQSpill *sp, const bool do_assert=false)