Class Reference for E1039 Core & Analysis Software
SRawEventEmbed.cxx
Go to the documentation of this file.
1 /*
2  * SRawEventEmbed.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 
9 #include "SRawEventEmbed.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 SRawEventEmbed::SRawEventEmbed(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 _in_name("digit_016070_R007.root"),
66 _in_tree_name("save"),
67 _tin(nullptr),
68 _tree_entry(0),
69 _trigger_bit(-1),
70 _out_name("SRawEventEmbedEval.root")
71 {
72 }
73 
76 }
77 
79 
80  ResetEvalVars();
81  InitEvalTree();
82 
83  p_geomSvc = GeomSvc::instance();
84 
85  int ret = GetNodes(topNode);
86  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
87 
88  _fin = TFile::Open(_in_name.c_str(), "READ");
89  if(!_fin) {
90  LogInfo("!fin");
92  }
93 
94  _tin = (TTree*) _fin->Get(_in_tree_name.c_str());
95  if(!_tin) {
96  LogInfo("!_tin");
98  }
99 
100  _srawevent = new SRawEvent();
101  _tin->SetBranchAddress("rawEvent", &_srawevent);
102 
104 }
105 
107 
109  std::cout << "Entering SRawEventEmbed::process_event: " << _event << std::endl;
110 
111  ResetEvalVars();
112 
113  if(!_hit_vector and _hit_container_type.find("Vector") == std::string::npos) {
114  LogInfo("!_hit_vector and _hit_container_type.find(\"Vector\") == std::string::npos");
116  }
117 
118  // Next entry until triggered, warp using
119  //_fin->cd();
120  while (true) {
121  try {
122  _tin->GetEntry(_tree_entry);
123  ++_tree_entry;
124  } catch (...) {
125  LogInfo("FAIL: _tin->GetEntry(_tree_entry);");
127  }
129  LogInfo("_event: " << _event);
130  LogInfo("_tree_entry: " << _tree_entry);
131  LogInfo(_srawevent);
132  }
133  if(!_srawevent) {
134  LogInfo("!_srawevent");
135  continue;
136  }
137  if((_srawevent->getTriggerBits()&_trigger_bit) > 0) break;
138  if(_tree_entry >= _tin->GetEntries()) _tree_entry=0;
139  }
140 
141  for(Hit hit : _srawevent->getAllHits()) {
142 
143 // if(Verbosity() >= Fun4AllBase::VERBOSITY_A_LOT) {
144 // LogInfo("");
145 // hit.print();
146 // }
147 
148  auto up_digiHit = std::unique_ptr<SQMCHit_v1> (new SQMCHit_v1());
149  auto digiHit = up_digiHit.get();
150 
151  digiHit->set_hit_id(_hit_vector->size());
152 
153  digiHit->set_detector_id(hit.detectorID);
154  digiHit->set_element_id(hit.elementID);
155  digiHit->set_drift_distance(hit.driftDistance);
156 
157  digiHit->set_pos(p_geomSvc->getMeasurement(digiHit->get_detector_id(), digiHit->get_element_id()));
158 
159  // FIXME figure this out
160  digiHit->set_in_time(hit.isInTime());
161  digiHit->set_hodo_mask(hit.isHodoMask());
162 
163  digiHit->set_track_id(std::numeric_limits<int>::max());
164  digiHit->set_g4hit_id(std::numeric_limits<int>::max());
165 
166  digiHit->set_truth_x(std::numeric_limits<float>::max());
167  digiHit->set_truth_y(std::numeric_limits<float>::max());
168  digiHit->set_truth_z(std::numeric_limits<float>::max());
169 
170 // if(Verbosity() >= Fun4AllBase::VERBOSITY_A_LOT) {
171 // LogInfo("");
172 // digiHit->identify();
173 // }
174 
175  _hit_vector->push_back(digiHit);
176  }
177 
178  _tout->Fill();
179 
181  std::cout << "Leaving SRawEventEmbed::process_event: " << _event << std::endl;
182  ++_event;
183 
185 }
186 
189  std::cout << "SRawEventEmbed::End" << std::endl;
190 
191  PHTFileServer::get().cd(_out_name.c_str());
192  _tout->Write();
193 
195 }
196 
198  PHTFileServer::get().open(_out_name.c_str(), "RECREATE");
199 
200  _tout = new TTree("T", "SRawEventEmbed");
201 
202  return 0;
203 }
204 
206  return 0;
207 }
208 
209 int SRawEventEmbed::GetNodes(PHCompositeNode* topNode) {
210 
211  if(_hit_container_type.find("Map") != std::string::npos) {
212  _hit_map = findNode::getClass<SQHitMap>(topNode, "SQHitMap");
213  if (!_hit_map) {
214  LogInfo("!_hit_map");
216  }
217  }
218 
219  if(_hit_container_type.find("Vector") != std::string::npos) {
220  _hit_vector = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
221  if (!_hit_vector) {
222  LogInfo("!_hit_vector");
224  }
225  }
226 
228 }
229 
230 
231 
232 
233 
234 
235 
#define LogInfo(message)
Definition: DbSvc.cc:15
TFile clean handling.
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
@ 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
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
Definition of hit structure.
Definition: SRawEvent.h:35
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
virtual void push_back(const SQHit *hit)=0
virtual size_t size() const =0
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
SRawEventEmbed(const std::string &name="SRawEventEmbed")
Int_t getTriggerBits()
Set/get the trigger types.
Definition: SRawEvent.h:174
std::vector< Hit > & getAllHits()
Definition: SRawEvent.h:141