Class Reference for E1039 Core & Analysis Software
KScheduler.h
Go to the documentation of this file.
1 /*
2  * KScheduler.h
3  * Author: Noah Wuerfel, nwuerfel@umich.edu
4  * Created: 10-19-2020
5  */
6 #ifndef _KSCHEDULER_H_
7 #define _KSCHEDULER_H_
8 
9 #include <list>
10 #include <map>
11 #include <queue>
12 #include <new>
13 #include <TString.h>
14 #include <TRandom.h>
15 #include <TClonesArray.h>
16 #include <TStopwatch.h>
17 #include <TThread.h>
18 #include <TSemaphore.h>
19 #include <TMutex.h>
20 #include <TCondition.h>
21 #include <GlobalConsts.h>
22 #include <geom_svc/GeomSvc.h>
23 #include <ktracker/EventReducer.h>
24 #include <ktracker/SRawEvent.h>
27 #include <ktracker/UtilSRawEvent.h>
28 #include <ktracker/GFFitter.h>
29 
30 class PHField;
31 class TGeoManager;
32 class KalmanFitter;
33 
34 class KJob;
35 class SQEvent;
36 class SQHitMap;
37 class SQHitVector;
38 
39 class KScheduler {
40 public:
41  KScheduler(TString inFile, TString outFile);
42  ~KScheduler();
43 
44  void Init(PHField* phfield, TGeoManager*t_geo_manager, KalmanFitter* kfitter, SQGenFit::GFFitter* gfitter, SQGenFit::GFField* gfield);
45 
46  static TString getInputFilename();
47  static void setInputFilename(TString name);
48  static TString getOutputFilename();
49  static void setOutputFilename(TString name);
50  //static void getTrackletsInStation(int stid);
51  void postCompletedEvent();
52 
53  Int_t runThreads();
54  Int_t endThreads();
55  void PushEvent(SRawEvent* sraw, bool copy);
56  void PushPoison();
57 
58  static void Verbose(const int a) { verb = a; }
59  static int Verbose() { return verb; }
60 
61  static void SetNumThreads(const int n) { n_threads = n; }
62  static int GetNumThreads() { return n_threads; }
63 
64  static void SetInputPipeDepth(const int depth) { input_pipe_depth = depth; }
65  static int GetInputPipeDepth() { return input_pipe_depth; }
66 
67  static void SetOutputPipeDepth(const int depth) { output_pipe_depth = depth; }
68  static int GetOutputPipeDepth() { return output_pipe_depth; }
69 
70  static void PrintFreq(const int i) { print_freq = i; }
71  static int PrintFreq() { return print_freq; }
72 
73  static void SaveNum(const int i) { save_num = i; }
74  static int SaveNum() { return save_num; }
75 
76  static void SaveRawEvent(const bool save) { save_raw_evt = save; }
77  static bool SaveRawEvent() { return save_raw_evt; }
78 
79  //void UseE906Data(const bool a) { use_e906_data = a; }
80  //bool UseE906Data() { return use_e906_data; }
81 
82  void UseTrackletReco(const bool a) { use_tracklet_reco = a; }
83  bool UseTrackletReco() const { return use_tracklet_reco; }
84 
85  KalmanFitter* GetKFitter() { return m_kfitter; }
86  SQGenFit::GFFitter* GetGFitter() { return m_gfitter; }
87 
88  // output tracklets
89 
90  // tracklet outputs mutex
91  TMutex* ktrkQueueMutex;
92 
93  // tracklets
94  TSemaphore* ktrkqFSem;
95  TSemaphore* ktrkqESem;
96 
97  // tracklet arrays...
98  std::queue<TClonesArray*> kTrackArrQueue;
99 
100 private:
101 
102  // reader
103  //static void* fReaderThread(void* readerArg);
104  //Int_t startReaderThread();
105  //Int_t stopReaderThread();
106 
107  // reaper
108  static void* fReaperThread(void* reaperArg);
109  Int_t startReaperThread();
110  Int_t stopReaperThread();
111 
112  // worker threads
113  static void* fWorkerThread(void* wArg);
114  Int_t startWorkerThread(unsigned threadId);
115  Int_t startWorkerThreads();
116 
117  void DoTrackFitting(TClonesArray* tracklets, SRecEvent* srec);
118  bool fitTrackCand(Tracklet& tracklet, KalmanFitter* fitter , SRecTrack& strack);
119  bool fitTrackCand(Tracklet& tracklet, SQGenFit::GFFitter* fitter, SRecTrack& strack);
120 
121 // stuff
122  static int verb;
123  static int n_threads;
124  static int input_pipe_depth;
125  static int output_pipe_depth;
126  static int print_freq;
127  static int save_num;
128  static bool save_raw_evt;
129  //static bool use_e906_data;
130 
131  bool use_tracklet_reco;
132 
133  TriggerAnalyzer* p_triggerAna;
134 
135  //io thread
136  static TString inputFilename;
137  static TString outputFilename;
138 
139  // NOT PROTECTED ASSUMES ONE fREAPER
140  static int completedEvents;
141  static Double_t totalTimeElapsed;
142 
143  TStopwatch* avgTimer;
144  TStopwatch* totalTimer;
145 
146  //static TString outputFile;
147  // reader
148  TThread* fRDPtr;
149  // reaper
150  TThread* fRPPtr;
151 
152  // shooting in the dark with root multithreading...
153  TMutex* wArgMutex;
154  TMutex* fReaderMutex;
155 
156  // reader
157  TMutex* newJobQueuePutMutex;
158  TMutex* newJobQueueTakeMutex;
159 
160  // reducer
161  TMutex* evRedQueuePutMutex;
162  TMutex* evRedQueueTakeMutex;
163 
164  // tracker
165  TMutex* kFTrkQueuePutMutex;
166  TMutex* kFTrkQueueTakeMutex;
167 
168  // reaper
169  TMutex* cmpJobQueuePutMutex;
170  TMutex* cmpJobQueueTakeMutex;
171 
172  // input pipe
173  std::queue<KJob*> newJobQueue;
174 
175  // output pipe
176  std::queue<KJob*> cmpJobQueue;
177 
178 
179  // first stage sems
180  TSemaphore* njqFSem;
181  TSemaphore* njqESem;
182 
183  // secondstage pipielines
184  TSemaphore* erqFSem;
185  TSemaphore* erqESem;
186 
187  // finder sems
188  TSemaphore* kftqFSem;
189  TSemaphore* kftqESem;
190  // out stage sems
191  TSemaphore* cjqFSem;
192  TSemaphore* cjqESem;
193 
194  // worker threads
195  // TODO split into levels: eventReducer...
196  std::vector<TThread*> workThreadArr;
197 
198  std::vector<EventReducer* > vec_eventReducer;
199  std::vector<KalmanFastTracking*> vec_kFastTrk;
200 
201  // event reducers.,.
202  std::queue<EventReducer*> eventReducerQueue;
203  // fast trackers...
204  std::queue<KalmanFastTracking*> kFastTrkQueue;
205 
206  KalmanFitter* m_kfitter;
207  SQGenFit::GFFitter* m_gfitter;
208 };
209 
210 #endif
Definition: KJob.h:21
static void SetInputPipeDepth(const int depth)
Definition: KScheduler.h:64
static int GetNumThreads()
Definition: KScheduler.h:62
static int GetInputPipeDepth()
Definition: KScheduler.h:65
bool UseTrackletReco() const
Definition: KScheduler.h:83
TSemaphore * ktrkqESem
Definition: KScheduler.h:95
static bool SaveRawEvent()
Definition: KScheduler.h:77
void postCompletedEvent()
Definition: KScheduler.cc:333
static void setInputFilename(TString name)
Definition: KScheduler.cc:321
static TString getOutputFilename()
Definition: KScheduler.cc:325
TMutex * ktrkQueueMutex
Definition: KScheduler.h:91
void UseTrackletReco(const bool a)
Definition: KScheduler.h:82
static void setOutputFilename(TString name)
Definition: KScheduler.cc:329
static void SaveRawEvent(const bool save)
Definition: KScheduler.h:76
std::queue< TClonesArray * > kTrackArrQueue
Definition: KScheduler.h:98
static void Verbose(const int a)
Definition: KScheduler.h:58
Int_t endThreads()
Definition: KScheduler.cc:301
static void PrintFreq(const int i)
Definition: KScheduler.h:70
static int GetOutputPipeDepth()
Definition: KScheduler.h:68
static void SetOutputPipeDepth(const int depth)
Definition: KScheduler.h:67
static TString getInputFilename()
Definition: KScheduler.cc:318
SQGenFit::GFFitter * GetGFitter()
Definition: KScheduler.h:86
TSemaphore * ktrkqFSem
Definition: KScheduler.h:94
void Init(PHField *phfield, TGeoManager *t_geo_manager, KalmanFitter *kfitter, SQGenFit::GFFitter *gfitter, SQGenFit::GFField *gfield)
Definition: KScheduler.cc:54
static void SetNumThreads(const int n)
Definition: KScheduler.h:61
KalmanFitter * GetKFitter()
Definition: KScheduler.h:85
static int SaveNum()
Definition: KScheduler.h:74
static void SaveNum(const int i)
Definition: KScheduler.h:73
KScheduler(TString inFile, TString outFile)
Definition: KScheduler.cc:47
void PushPoison()
Definition: KScheduler.cc:461
static int Verbose()
Definition: KScheduler.h:59
static int PrintFreq()
Definition: KScheduler.h:71
void PushEvent(SRawEvent *sraw, bool copy)
Definition: KScheduler.cc:447
Int_t runThreads()
Definition: KScheduler.cc:286
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