Class Reference for E1039 Core & Analysis Software
PHG4DSTReader.h
Go to the documentation of this file.
1 // $Id: PHG4DSTReader.h,v 1.7 2015/02/27 23:42:23 jinhuang Exp $
2 
10 #ifndef PHG4DSTREADER_H_
11 #define PHG4DSTREADER_H_
12 
13 #include <fun4all/SubsysReco.h>
14 
15 
16 #ifndef __CINT__
17 
18 #include <memory>
19 
20 #endif
21 
22 #include <iostream>
23 #include <string>
24 #include <set>
25 #include <vector>
26 
27 class PHCompositeNode;
28 
29 class PHG4Particle;
30 
31 class TClonesArray;
32 class TTree;
33 
34 
39 class PHG4DSTReader : public SubsysReco
40 {
41 public:
42  PHG4DSTReader(const std::string &filename);
43  virtual
45 
47  int
49 
51  int
53 
55  int
57 
58  void
59  AddNode(const std::string &name)
60  {
61  _node_postfix.push_back(name);
62  }
63 
64  void
65  AddHit(const std::string &name)
66  {
67  _node_postfix.push_back(name);
68  }
69 
72  void
74  {
76  }
77 
79  void
81  {
83  }
84 
86  void
88  {
89  _save_particle = b;
90  }
91 
93  void
95  {
96  _save_vertex = b;
97  }
98 
99 protected:
100 
101  std::vector<std::string> _node_postfix;
102 // std::vector<std::string> _node_name;
103  int nblocks;
104 
105 #ifndef __CINT__
106 
107  typedef std::shared_ptr<TClonesArray> arr_ptr;
108 
109  struct record
110  {
111  unsigned int _cnt;
112  std::string _name;
114  TClonesArray * _arr_ptr;
115 
116  enum enu_type
117  {
119  };
121  };
122  typedef std::vector<record> records_t;
124  /*
125  typedef PHG4Particlev2 part_type;
126  typedef PHG4HitEval hit_type;
127  typedef PHG4VtxPointv1 vertex_type;
128  typedef RawTowerv1 RawTower_type;
129  typedef JetV1 PHPyJet_type;
130  */
131 #endif
132 
133  int _event;
134 
135  std::string _out_file_name;
136 
137 // TFile * _file;
138  TTree * _T;
139 
142 
145 
148 
149  typedef std::set<int> PartSet_t;
152 
155 
156 #ifndef __CINT__
157 
159  void
160  add_particle(record & rec, PHG4Particle * part);
161 
162 #endif
163 
164  void
165  build_tree();
166 };
167 
168 #endif /* PHG4DSTREADER_H_ */
PHG4DSTReader save information from DST to an evaluator, which could include hit. particle,...
Definition: PHG4DSTReader.h:40
virtual ~PHG4DSTReader()
bool _save_vertex
save vertex for particles?
int Init(PHCompositeNode *)
full initialization
bool _load_active_particle
load all particle that produced a saved hit
std::vector< std::string > _node_postfix
std::shared_ptr< TClonesArray > arr_ptr
void add_particle(record &rec, PHG4Particle *part)
add a particle and associated vertex if _save_vertex
void set_load_all_particle(bool b)
Definition: PHG4DSTReader.h:73
std::vector< record > records_t
int process_event(PHCompositeNode *)
event processing method
std::set< int > PartSet_t
void set_save_vertex(bool b)
Switch for vertex.
Definition: PHG4DSTReader.h:94
PartSet_t _vertex_set
PartSet_t _particle_set
bool _load_all_particle
load all particle in truth info module?
PHG4DSTReader(const std::string &filename)
void AddNode(const std::string &name)
Definition: PHG4DSTReader.h:59
records_t _records
bool _save_particle
master switch to save particles
int End(PHCompositeNode *)
end of run method
void AddHit(const std::string &name)
Definition: PHG4DSTReader.h:65
void set_save_particle(bool b)
Switch for saving any particles at all.
Definition: PHG4DSTReader.h:87
std::string _out_file_name
void set_load_active_particle(bool b)
load all particle that produced a saved hit
Definition: PHG4DSTReader.h:80
TClonesArray * _arr_ptr