Class Reference for E1039 Core & Analysis Software
RndmEmbed.h
Go to the documentation of this file.
1 /*
2  * RndmEmbed.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_RndmEmbed_H_
9 #define _H_RndmEmbed_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 class SQRun;
28 class SQSpillMap;
29 
30 class SQEvent;
31 class SQHitMap;
32 class SQHitVector;
33 
35 
36 class SRecEvent;
37 
38 class GeomSvc;
39 
40 class TFile;
41 class TTree;
42 
43 class RndmEmbed: public SubsysReco {
44 
45 public:
46 
47  RndmEmbed(const std::string &name = "RndmEmbed");
48  virtual ~RndmEmbed() {
49  }
50 
51  int Init(PHCompositeNode *topNode);
52  int InitRun(PHCompositeNode *topNode);
53  int process_event(PHCompositeNode *topNode);
54  int End(PHCompositeNode *topNode);
55 
56  int InitEvalTree();
57  int ResetEvalVars();
58 
59  const std::string& get_hit_container_choice() const {
60  return _hit_container_type;
61  }
62 
63  void set_hit_container_choice(const std::string& hitContainerChoice) {
64  _hit_container_type = hitContainerChoice;
65  }
66 
67  const std::string& get_out_name() const {
68  return _out_name;
69  }
70 
71  void set_out_name(const std::string& outName) {
72  _out_name = outName;
73  }
74 
75  void print_noise_rate() const {
76  for(auto i : _noise_rate) {
77  std::cout << i.first << " -> " << i.second << std::endl;
78  }
79  }
80 
81  void set_noise_rate(const std::string & name, const double & rate) {
82  _noise_rate[name] = rate;
83  }
84 
85 private:
86 
87  int GetNodes(PHCompositeNode *topNode);
88 
89  std::string _hit_container_type;
90  std::map<std::string, double> _noise_rate;
91 
92  size_t _event;
93 
94  GeomSvc *p_geomSvc;
95 
96  SQHitMap *_hit_map;
97  SQHitVector *_hit_vector;
98 
99  std::string _out_name;
100  TTree* _tout;
101 };
102 
103 
104 #endif /* _H_RndmEmbed_H_ */
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: RndmEmbed.cxx:194
void set_hit_container_choice(const std::string &hitContainerChoice)
Definition: RndmEmbed.h:63
virtual ~RndmEmbed()
Definition: RndmEmbed.h:48
const std::string & get_hit_container_choice() const
Definition: RndmEmbed.h:59
const std::string & get_out_name() const
Definition: RndmEmbed.h:67
int InitRun(PHCompositeNode *topNode)
Definition: RndmEmbed.cxx:73
void print_noise_rate() const
Definition: RndmEmbed.h:75
void set_out_name(const std::string &outName)
Definition: RndmEmbed.h:71
int process_event(PHCompositeNode *topNode)
Definition: RndmEmbed.cxx:86
void set_noise_rate(const std::string &name, const double &rate)
Definition: RndmEmbed.h:81
int Init(PHCompositeNode *topNode)
Definition: RndmEmbed.cxx:69
int InitEvalTree()
Definition: RndmEmbed.cxx:204
int ResetEvalVars()
Definition: RndmEmbed.cxx:212
RndmEmbed(const std::string &name="RndmEmbed")
Definition: RndmEmbed.cxx:58
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