Class Reference for E1039 Core & Analysis Software
SQReco.h
Go to the documentation of this file.
1 /*
2  * Entry class for all SpinQuest reconstruction
3  */
4 
5 #ifndef _SQRECO_H
6 #define _SQRECO_H
7 
8 #include <fun4all/SubsysReco.h>
9 
10 #include <vector>
11 #include <string>
12 #include <iostream>
13 #include <list>
14 #include <map>
15 
16 #include <TString.h>
17 
18 #include "GFFitter.h"
19 
20 class PHField;
21 
22 class Tracklet;
23 class KalmanFastTracking;
24 class KalmanFitter;
25 class EventReducer;
26 class SRawEvent;
27 class SRecEvent;
28 
29 class SQRun;
30 class SQSpillMap;
31 
32 class SQEvent;
33 class SQHitMap;
34 class SQHitVector;
35 class SQTrackVector;
36 
37 class TFile;
38 class TTree;
39 class TGeoManager;
40 class TClonesArray;
41 
42 class SQReco: public SubsysReco
43 {
44 public:
47 
48  SQReco(const std::string& name = "SQReco");
49  virtual ~SQReco();
50 
51  virtual int Init(PHCompositeNode* topNode);
52  virtual int InitRun(PHCompositeNode* topNode);
53  virtual int process_event(PHCompositeNode* topNode);
54  virtual int End(PHCompositeNode* topNode);
55 
56  void setInputTy(SQReco::INPUT_TYPE input_ty) { _input_type = input_ty; }
57  void setFitterTy(SQReco::FITTER_TYPE fitter_ty) { _fitter_type = fitter_ty; }
58 
59  const TString& get_eval_file_name() const { return _eval_file_name; }
60  void set_eval_file_name(const TString& evalFileName) { _eval_file_name = evalFileName; }
61 
62  bool use_geom_io_node() const { return _use_geom_io_node; }
63  void use_geom_io_node(const bool val) { _use_geom_io_node = val; }
64 
65  const std::string& get_geom_file_name() const { return _geom_file_name; }
66  void set_geom_file_name(const std::string& geomFileName) { _geom_file_name = geomFileName; }
67 
68  bool is_KF_enabled() const { return _enable_KF; }
69  void set_enable_KF(bool enable) { _enable_KF = enable; }
70 
72  void set_output_list_index(const int idx) { _output_list_idx = idx; }
73 
74  bool is_eval_enabled() const { return _enable_eval; }
75  void set_enable_eval(bool enable) { _enable_eval = enable; }
76  bool is_eval_dst_enabled() const { return _enable_eval_dst; }
77  void set_enable_eval_dst(bool enable) { _enable_eval_dst = enable; }
78  void add_eval_list(int listID);
79 
80  const TString& get_evt_reducer_opt() const { return _evt_reducer_opt; }
81  void set_evt_reducer_opt(const TString& opt) { _evt_reducer_opt = opt; }
82 
83  void set_legacy_rec_container(const bool b = true) { _legacy_rec_container = b; }
84 
85 protected:
86 
87  virtual int InitField(PHCompositeNode* topNode);
88  virtual int InitGeom(PHCompositeNode* topNode);
89  virtual int InitFastTracking();
90  virtual int MakeNodes(PHCompositeNode* topNode);
91  virtual int GetNodes(PHCompositeNode* topNode);
92 
93  int InitEvalTree();
94  int ResetEvalVars();
95 
96  void ProcessEventPrep();
97  void ProcessEventFinish();
99  int updateHitInfo(SRawEvent* sraw_event);
100 
101  bool fitTrackCand(Tracklet& tracklet, KalmanFitter* fitter);
102  bool fitTrackCand(Tracklet& tracklet, SQGenFit::GFFitter* fitter);
103 
104  void fillRecTrack(SRecTrack& recTrack);
105 
108 
110 
113  TTree* _eval_tree;
114  TClonesArray* _tracklets;
115  std::vector<int> _eval_listIDs;
116 
119 
123 
127 
130 
132 
133  size_t _event;
134 
137 
141 
142  //map from the unique hitID to the index in the SQHitVector
143  std::map<int, size_t> _m_hitID_idx;
144  std::map<int, size_t> _m_trghitID_idx;
145 
150 
152  std::string _geom_file_name;
153  TGeoManager* _t_geo_manager;
154 };
155 
156 #endif
transient DST object for field storage and access
Definition: PHField.h:14
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects as std::map.
Definition: SQHitMap.h:23
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
Definition: SQReco.h:43
TGeoManager * _t_geo_manager
Definition: SQReco.h:153
INPUT_TYPE
Definition: SQReco.h:45
@ E1039
Definition: SQReco.h:45
@ E906
Definition: SQReco.h:45
std::string _geom_file_name
Definition: SQReco.h:152
void set_geom_file_name(const std::string &geomFileName)
Definition: SQReco.h:66
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
bool _enable_eval
Definition: SQReco.h:111
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
void use_geom_io_node(const bool val)
Definition: SQReco.h:63
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
const std::string & get_geom_file_name() const
Definition: SQReco.h:65
FITTER_TYPE
Definition: SQReco.h:46
@ 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
void set_evt_reducer_opt(const TString &opt)
Definition: SQReco.h:81
void setFitterTy(SQReco::FITTER_TYPE fitter_ty)
Definition: SQReco.h:57
bool use_geom_io_node() const
Definition: SQReco.h:62
void setInputTy(SQReco::INPUT_TYPE input_ty)
Definition: SQReco.h:56
PHField * _phfield
Definition: SQReco.h:128
bool _use_geom_io_node
Definition: SQReco.h:151
void set_enable_eval_dst(bool enable)
Definition: SQReco.h:77
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
const TString & get_eval_file_name() const
Definition: SQReco.h:59
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
void set_enable_eval(bool enable)
Definition: SQReco.h:75
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
const TString & get_evt_reducer_opt() const
Definition: SQReco.h:80
void set_output_list_index(const int idx)
See KalmanFastTracking::setOutputListID().
Definition: SQReco.h:72
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
void set_legacy_rec_container(const bool b=true)
Definition: SQReco.h:83
void set_eval_file_name(const TString &evalFileName)
Definition: SQReco.h:60
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
void set_enable_KF(bool enable)
Definition: SQReco.h:69
bool is_KF_enabled() const
Definition: SQReco.h:68
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19