Class Reference for E1039 Core & Analysis Software
MultiThreadReco.h
Go to the documentation of this file.
1 #ifndef _MULTI_THREAD_RECO__H_
2 #define _MULTI_THREAD_RECO__H_
3 //#include <fun4all/SubsysReco.h>
4 #include <ktracker/SQReco.h>
5 class KScheduler;
6 
7 class MultiThreadReco: public SQReco {
8  std::string m_out_file_name;
9  bool m_save_raw_evt;
10  KScheduler* m_ksc;
11 
12  public:
13  MultiThreadReco(const std::string& name="MultiThreadReco");
14  virtual ~MultiThreadReco();
15 
16  void SetOutputFileName(const std::string name) { m_out_file_name = name; }
17  void SaveRawEvent(const bool save) { m_save_raw_evt = save; }
18 
19  int Init(PHCompositeNode *topNode);
20  int InitRun(PHCompositeNode *topNode);
21  int process_event(PHCompositeNode *topNode);
22  int End(PHCompositeNode *topNode);
23 };
24 
25 #endif // _MULTI_THREAD_RECO__H_
virtual ~MultiThreadReco()
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void SaveRawEvent(const bool save)
void SetOutputFileName(const std::string name)
MultiThreadReco(const std::string &name="MultiThreadReco")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
Definition: SQReco.h:43