Class Reference for E1039 Core & Analysis Software
RndmEmbed.cxx
Go to the documentation of this file.
1 /*
2  * RndmEmbed.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 
9 #include "RndmEmbed.h"
10 
11 #include <interface_main/SQHit.h>
20 
21 #include <ktracker/SRecEvent.h>
22 
23 #include <geom_svc/GeomSvc.h>
24 
26 #include <fun4all/PHTFileServer.h>
27 #include <phool/PHNodeIterator.h>
28 #include <phool/PHIODataNode.h>
29 #include <phool/getClass.h>
30 #include <phool/PHRandomSeed.h>
31 
34 #include <g4main/PHG4Hit.h>
35 #include <g4main/PHG4Particle.h>
36 #include <g4main/PHG4HitDefs.h>
37 #include <g4main/PHG4VtxPoint.h>
38 
39 #include <TFile.h>
40 #include <TTree.h>
41 
42 #include <cstring>
43 #include <cmath>
44 #include <cfloat>
45 #include <stdexcept>
46 #include <limits>
47 #include <tuple>
48 #include <memory>
49 
50 // gsl
51 #include <gsl/gsl_randist.h>
52 #include <gsl/gsl_rng.h>
53 
54 #include <boost/lexical_cast.hpp>
55 
56 using namespace std;
57 
58 RndmEmbed::RndmEmbed(const std::string& name) :
59 SubsysReco(name),
60 _hit_container_type("Vector"),
61 _noise_rate(),
62 _event(0),
63 _hit_map(nullptr),
64 _hit_vector(nullptr),
65 _out_name("RndmEmbedEval.root")
66 {
67 }
68 
71 }
72 
74 
75  ResetEvalVars();
76  InitEvalTree();
77 
78  p_geomSvc = GeomSvc::instance();
79 
80  int ret = GetNodes(topNode);
81  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
82 
84 }
85 
87 
89  std::cout << "Entering RndmEmbed::process_event: " << _event << std::endl;
90 
91  ResetEvalVars();
92 
93  if(!_hit_vector and _hit_container_type.find("Vector") == std::string::npos) {
94  LogInfo("!_hit_vector and _hit_container_type.find(\"Vector\") == std::string::npos");
96  }
97 
98 #ifndef __CINT__
99 
100  gsl_rng* RandomGenerator = gsl_rng_alloc(gsl_rng_mt19937);
101  unsigned int seed = PHRandomSeed(); // fixed seed is handled in this funtcion
102  //seed = 128;
103  //std::cout << Name() << " random seed: " << seed << std::endl;
104  gsl_rng_set(RandomGenerator, seed);
105 
106  for (auto i : _noise_rate) {
107  auto detector_name = i.first;
108  auto noise_rate = i.second;
109 
110  auto detector_id = p_geomSvc->getDetectorID(detector_name);
111  if(detector_id==0) {
112  LogInfo("detector_id==0");
113  continue;
114  }
115 
116  Plane plane = p_geomSvc->getPlane(detector_id);
117 
118  for( int element_id=1; element_id <= plane.nElements; ++element_id) {
119  bool acc = gsl_ran_flat(RandomGenerator, 0, 1) < noise_rate ? true : false;
120  if(!acc) continue;
121 
122  {
123  double drift = plane.spacing * gsl_ran_flat(RandomGenerator, -1, 1);
124 
125  auto up_digiHit = std::unique_ptr<SQMCHit_v1> (new SQMCHit_v1());
126  auto digiHit = up_digiHit.get();
127 
128  digiHit->set_hit_id(_hit_vector->size());
129 
130  digiHit->set_detector_id(detector_id);
131  digiHit->set_element_id(element_id);
132  digiHit->set_drift_distance(drift);
133 
134  digiHit->set_pos(p_geomSvc->getMeasurement(digiHit->get_detector_id(), digiHit->get_element_id()));
135 
136  // FIXME figure this out
137  digiHit->set_in_time(1);
138  digiHit->set_hodo_mask(1);
139 
140  digiHit->set_track_id(std::numeric_limits<int>::max());
141  digiHit->set_g4hit_id(std::numeric_limits<int>::max());
142 
143  digiHit->set_truth_x(std::numeric_limits<float>::max());
144  digiHit->set_truth_y(std::numeric_limits<float>::max());
145  digiHit->set_truth_z(std::numeric_limits<float>::max());
146 
147  _hit_vector->push_back(digiHit);
148  }
149 
150  {
151  double drift = plane.spacing * gsl_ran_flat(RandomGenerator, -1, 1);
152 
153  auto up_digiHit = std::unique_ptr<SQMCHit_v1> (new SQMCHit_v1());
154  auto digiHit = up_digiHit.get();
155 
156  digiHit->set_hit_id(_hit_vector->size());
157 
158  digiHit->set_detector_id(detector_id+1);
159  digiHit->set_element_id(element_id);
160  digiHit->set_drift_distance(drift);
161 
162  digiHit->set_pos(p_geomSvc->getMeasurement(digiHit->get_detector_id(), digiHit->get_element_id()));
163 
164  // FIXME figure this out
165  digiHit->set_in_time(1);
166  digiHit->set_hodo_mask(1);
167 
168  digiHit->set_track_id(std::numeric_limits<int>::max());
169  digiHit->set_g4hit_id(std::numeric_limits<int>::max());
170 
171  digiHit->set_truth_x(std::numeric_limits<float>::max());
172  digiHit->set_truth_y(std::numeric_limits<float>::max());
173  digiHit->set_truth_z(std::numeric_limits<float>::max());
174 
175  _hit_vector->push_back(digiHit);
176  }
177 
178  }
179  }
180 
181  gsl_rng_free(RandomGenerator);
182 
183 #endif //__CINT__
184 
185  _tout->Fill();
186 
188  std::cout << "Leaving RndmEmbed::process_event: " << _event << std::endl;
189  ++_event;
190 
192 }
193 
196  std::cout << "RndmEmbed::End" << std::endl;
197 
198  PHTFileServer::get().cd(_out_name.c_str());
199  _tout->Write();
200 
202 }
203 
205  PHTFileServer::get().open(_out_name.c_str(), "RECREATE");
206 
207  _tout = new TTree("T", "RndmEmbed");
208 
209  return 0;
210 }
211 
213  return 0;
214 }
215 
216 int RndmEmbed::GetNodes(PHCompositeNode* topNode) {
217 
218  if(_hit_container_type.find("Map") != std::string::npos) {
219  _hit_map = findNode::getClass<SQHitMap>(topNode, "SQHitMap");
220  if (!_hit_map) {
221  LogInfo("!_hit_map");
223  }
224  }
225 
226  if(_hit_container_type.find("Vector") != std::string::npos) {
227  _hit_vector = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
228  if (!_hit_vector) {
229  LogInfo("!_hit_vector");
231  }
232  }
233 
235 }
236 
237 
238 
239 
240 
241 
242 
#define LogInfo(message)
Definition: DbSvc.cc:15
TFile clean handling.
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
const Plane & getPlane(int detectorID) const
Definition: GeomSvc.h:231
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
static PHTFileServer & get(void)
return reference to class singleton
Definition: PHTFileServer.h:36
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
Definition: GeomSvc.h:37
int nElements
Definition: GeomSvc.h:69
double spacing
Definition: GeomSvc.h:70
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: RndmEmbed.cxx:194
int InitRun(PHCompositeNode *topNode)
Definition: RndmEmbed.cxx:73
int process_event(PHCompositeNode *topNode)
Definition: RndmEmbed.cxx:86
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
virtual void push_back(const SQHit *hit)=0
virtual size_t size() const =0