Class Reference for E1039 Core & Analysis Software
DetectorConstructionWrapper.h
Go to the documentation of this file.
1 /*
2  * DetectorConstructionWrapper.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_DetectorConstructionWrapper_H_
9 #define _H_DetectorConstructionWrapper_H_
10 
11 #include <jobopts_svc/JobOptsSvc.h>
12 
13 #include <fun4all/SubsysReco.h>
14 
15 #include <string>
16 
18 
19 public:
20 
21  DetectorConstructionWrapper(const std::string &name = "DetectorConstructionWrapper");
23  }
24 
25  int Init(PHCompositeNode *topNode);
26  int InitRun(PHCompositeNode *topNode) {};
27  int process_event(PHCompositeNode *topNode) {};
28  int End(PHCompositeNode *topNode);
29 
30  const std::string& get_out_name() const {
31  return _out_name;
32  }
33 
34  void set_out_name(const std::string& outName) {
35  _out_name = outName;
36  }
37 
38 private:
39 
40  std::string _geometrySchema;
41 
42  double _fMagStr;
43  double _kMagStr;
44 
45  std::string _out_name;
46 
47  JobOptsSvc* _jobOptsSvc;
48 };
49 
50 
51 #endif /* _H_DetectorConstructionWrapper_H_ */
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
const std::string & get_out_name() const
void set_out_name(const std::string &outName)
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
DetectorConstructionWrapper(const std::string &name="DetectorConstructionWrapper")