Class Reference for E1039 Core & Analysis Software
MultiThreadReco.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TSystem.h>
4 #include "KJob.h"
5 #include "KScheduler.h"
6 #include "MultiThreadReco.h"
7 using namespace std;
8 
9 MultiThreadReco::MultiThreadReco(const std::string& name)
10  : SQReco(name)
11  , m_out_file_name("multi_thread_reco.root")
12  , m_save_raw_evt(false)
13  , m_ksc(0)
14 {
15  ;
16 }
17 
19 {
20  if (m_ksc) delete m_ksc;
21 }
22 
24 {
26 }
27 
29 {
30  //int ret = MakeNodes(topNode);
31  //if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
32 
33  int ret = GetNodes(topNode);
34  if (ret != Fun4AllReturnCodes::EVENT_OK) return ret;
35 
36  ret = InitField(topNode);
37  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
38 
39  ret = InitGeom(topNode);
40  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
41 
42  if (_enable_KF) {
45  _kfitter->setControlParameter(50, 0.001);
46  } else {
48  if (_fitter_type == SQReco::KF ) _gfitter->init(_gfield, "KalmanFitter");
49  else if (_fitter_type == SQReco::KFREF ) _gfitter->init(_gfield, "KalmanFitterRefTrack");
50  else if (_fitter_type == SQReco::DAF ) _gfitter->init(_gfield, "DafSimple");
51  else if (_fitter_type == SQReco::DAFREF) _gfitter->init(_gfield, "DafRef");
52  }
53  }
54 
55  m_ksc = new KScheduler("", m_out_file_name);
56  //m_ksc->UseTrackletReco(true);
57  m_ksc->SaveRawEvent(m_save_raw_evt);
59  m_ksc->runThreads();
60 
62 }
63 
65 {
66  bool copy = true;
67  if (_input_type == SQReco::E1039) {
69  copy = false;
70  }
71 
72  m_ksc->PushEvent(_rawEvent, copy);
73 
74  //if(_input_type == SQReco::E1039) {
75  // delete _rawEvent;
76  // _rawEvent = 0;
77  //}
78 
80 }
81 
83 {
84  m_ksc->PushPoison();
85  m_ksc->endThreads();
86 
88 }
static void SaveRawEvent(const bool save)
Definition: KScheduler.h:76
Int_t endThreads()
Definition: KScheduler.cc:301
void Init(PHField *phfield, TGeoManager *t_geo_manager, KalmanFitter *kfitter, SQGenFit::GFFitter *gfitter, SQGenFit::GFField *gfield)
Definition: KScheduler.cc:54
void PushPoison()
Definition: KScheduler.cc:461
void PushEvent(SRawEvent *sraw, bool copy)
Definition: KScheduler.cc:447
Int_t runThreads()
Definition: KScheduler.cc:286
void setControlParameter(int nMaxIteration, double tolerance)
Set the convergence control parameters.
Definition: KalmanFitter.h:31
virtual ~MultiThreadReco()
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
MultiThreadReco(const std::string &name="MultiThreadReco")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
void init(GFField *field, const TString &fitter_choice="KalmanFitterRefTrack")
Definition: GFFitter.cxx:29
Definition: SQReco.h:43
TGeoManager * _t_geo_manager
Definition: SQReco.h:153
@ E1039
Definition: SQReco.h:45
SQReco::FITTER_TYPE _fitter_type
Definition: SQReco.h:107
SQReco::INPUT_TYPE _input_type
Definition: SQReco.h:106
SQGenFit::GFField * _gfield
Definition: SQReco.h:129
SRawEvent * _rawEvent
Definition: SQReco.h:147
@ 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
virtual int GetNodes(PHCompositeNode *topNode)
Definition: SQReco.cxx:546
virtual int InitGeom(PHCompositeNode *topNode)
Definition: SQReco.cxx:185
PHField * _phfield
Definition: SQReco.h:128
SRawEvent * BuildSRawEvent()
Definition: SQReco.cxx:285
KalmanFitter * _kfitter
Definition: SQReco.h:125
bool _enable_KF
Definition: SQReco.h:124
virtual int InitField(PHCompositeNode *topNode)
Definition: SQReco.cxx:166
SQGenFit::GFFitter * _gfitter
Definition: SQReco.h:126