Class Reference for E1039 Core & Analysis Software
TruthEval.h
Go to the documentation of this file.
1 /*
2  * TruthEval.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_TruthEval_H_
9 #define _H_TruthEval_H_
10 
11 // Fun4All includes
12 #include <fun4all/SubsysReco.h>
13 
14 // STL includes
15 #include <vector>
16 #include <string>
17 #include <iostream>
18 #include <list>
19 #include <map>
20 
22 class PHG4HitContainer;
23 
24 class TFile;
25 class TTree;
26 
27 class TClonesArray;
28 
29 class TruthEval: public SubsysReco {
30 
31 public:
32 
33  TruthEval(const std::string &name = "TruthEval", const std::string &out = "eval.root");
34  virtual ~TruthEval() {
35  }
36 
37  int Init(PHCompositeNode *topNode);
38  int InitRun(PHCompositeNode *topNode);
39  int process_event(PHCompositeNode *topNode);
40  int End(PHCompositeNode *topNode);
41 
42  int InitEvalTree();
43  int ResetEvalVars();
44 
45  std::string _out_name;
46 
47  float target_angle; // deg
48  float target_r;
49  float target_l;
50  float target_z;
51 
52  float coil_in_r;
53  float coil_ot_r;
54  float coil_min_y_0;
55  float coil_max_y_0;
56  float coil_min_y_1;
57  float coil_max_y_1;
58 
59 
60 private:
61 
62  int GetNodes(PHCompositeNode *topNode);
63 
64  int _event;
65 
66 
67  PHG4TruthInfoContainer *_g4truth_container;
68 
69  PHG4HitContainer *_g4hit_coil;
70 
71  TTree *_tout;
72  TClonesArray *_tca_truthtracks;
73 
74  TTree *_tout1;
75  float _total_edep;
76 };
77 
78 
79 #endif /* _H_TruthEval_H_ */
int InitRun(PHCompositeNode *topNode)
Definition: TruthEval.cxx:71
float coil_min_y_0
Definition: TruthEval.h:54
TruthEval(const std::string &name="TruthEval", const std::string &out="eval.root")
Definition: TruthEval.cxx:45
float coil_max_y_0
Definition: TruthEval.h:55
std::string _out_name
Definition: TruthEval.h:45
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: TruthEval.cxx:264
int process_event(PHCompositeNode *topNode)
Definition: TruthEval.cxx:79
float coil_in_r
Definition: TruthEval.h:52
float target_z
Definition: TruthEval.h:50
virtual ~TruthEval()
Definition: TruthEval.h:34
int InitEvalTree()
Definition: TruthEval.cxx:277
int ResetEvalVars()
Definition: TruthEval.cxx:293
float coil_ot_r
Definition: TruthEval.h:53
float target_angle
Definition: TruthEval.h:47
float coil_min_y_1
Definition: TruthEval.h:56
float target_r
Definition: TruthEval.h:48
float coil_max_y_1
Definition: TruthEval.h:57
int Init(PHCompositeNode *topNode)
Definition: TruthEval.cxx:67
float target_l
Definition: TruthEval.h:49