Class Reference for E1039 Core & Analysis Software
SRawEventEmbed.h
Go to the documentation of this file.
1 /*
2  * SRawEventEmbed.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_SRawEventEmbed_H_
9 #define _H_SRawEventEmbed_H_
10 
11 // ROOT
12 #include <TSQLServer.h>
13 #include <TSQLResult.h>
14 #include <TSQLRow.h>
15 
16 // Fun4All includes
17 #include <fun4all/SubsysReco.h>
18 
19 // STL includes
20 #include <vector>
21 #include <string>
22 #include <iostream>
23 #include <list>
24 #include <map>
25 //#include <algorithm>
26 
27 #include <ktracker/SRawEvent.h>
28 
29 class SQRun;
30 class SQSpillMap;
31 
32 class SQEvent;
33 class SQHitMap;
34 class SQHitVector;
35 
37 
38 class SRecEvent;
39 
40 class GeomSvc;
41 
42 class TFile;
43 class TTree;
44 
45 class SRawEventEmbed: public SubsysReco {
46 
47 public:
48 
49  SRawEventEmbed(const std::string &name = "SRawEventEmbed");
50  virtual ~SRawEventEmbed() {
51  }
52 
53  int Init(PHCompositeNode *topNode);
54  int InitRun(PHCompositeNode *topNode);
55  int process_event(PHCompositeNode *topNode);
56  int End(PHCompositeNode *topNode);
57 
58  int InitEvalTree();
59  int ResetEvalVars();
60 
61  const std::string& get_hit_container_choice() const {
62  return _hit_container_type;
63  }
64 
65  void set_hit_container_choice(const std::string& hitContainerChoice) {
66  _hit_container_type = hitContainerChoice;
67  }
68 
69  const std::string& get_out_name() const {
70  return _out_name;
71  }
72 
73  void set_out_name(const std::string& outName) {
74  _out_name = outName;
75  }
76 
77  void print_noise_rate() const {
78  for(auto i : _noise_rate) {
79  std::cout << i.first << " -> " << i.second << std::endl;
80  }
81  }
82 
83  void set_noise_rate(const std::string & name, const double & rate) {
84  _noise_rate[name] = rate;
85  }
86 
87  const std::string& get_in_name() const {
88  return _in_name;
89  }
90 
91  void set_in_name(const std::string& inName) {
92  _in_name = inName;
93  }
94 
95  int get_trigger_bit() const {
96  return _trigger_bit;
97  }
98 
100  _trigger_bit = triggerBit;
101  }
102 
103  const std::string& get_in_tree_name() const {
104  return _in_tree_name;
105  }
106 
107  void set_in_tree_name(const std::string& inTreeName) {
108  _in_tree_name = inTreeName;
109  }
110 
111 private:
112 
113  int GetNodes(PHCompositeNode *topNode);
114 
115  std::string _hit_container_type;
116  std::map<std::string, double> _noise_rate;
117 
118  size_t _event;
119 
120  GeomSvc *p_geomSvc;
121 
122  SQHitMap *_hit_map;
123  SQHitVector *_hit_vector;
124 
125  std::string _in_name;
126  std::string _in_tree_name;
127  TFile* _fin;
128  TTree* _tin;
129  int _tree_entry;
130  int _trigger_bit;
131  SRawEvent* _srawevent;
132 
133  std::string _out_name;
134  TTree* _tout;
135 };
136 
137 
138 #endif /* _H_SRawEventEmbed_H_ */
#define triggerBit(n)
Definition: SRawEvent.h:28
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
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
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void set_out_name(const std::string &outName)
const std::string & get_hit_container_choice() const
void set_in_tree_name(const std::string &inTreeName)
int Init(PHCompositeNode *topNode)
virtual ~SRawEventEmbed()
void print_noise_rate() const
void set_in_name(const std::string &inName)
int get_trigger_bit() const
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void set_hit_container_choice(const std::string &hitContainerChoice)
void set_noise_rate(const std::string &name, const double &rate)
void set_trigger_bit(int triggerBit)
const std::string & get_out_name() const
const std::string & get_in_tree_name() const
const std::string & get_in_name() const
SRawEventEmbed(const std::string &name="SRawEventEmbed")