21 #include <ktracker/SRecEvent.h>
51 #include <gsl/gsl_randist.h>
52 #include <gsl/gsl_rng.h>
54 #include <boost/lexical_cast.hpp>
60 _hit_container_type(
"Vector"),
65 _in_name(
"digit_016070_R007.root"),
66 _in_tree_name(
"save"),
70 _out_name(
"SRawEventEmbedEval.root")
85 int ret = GetNodes(topNode);
88 _fin = TFile::Open(_in_name.c_str(),
"READ");
94 _tin = (TTree*) _fin->Get(_in_tree_name.c_str());
101 _tin->SetBranchAddress(
"rawEvent", &_srawevent);
109 std::cout <<
"Entering SRawEventEmbed::process_event: " << _event << std::endl;
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");
122 _tin->GetEntry(_tree_entry);
125 LogInfo(
"FAIL: _tin->GetEntry(_tree_entry);");
130 LogInfo(
"_tree_entry: " << _tree_entry);
138 if(_tree_entry >= _tin->GetEntries()) _tree_entry=0;
148 auto up_digiHit = std::unique_ptr<SQMCHit_v1> (
new SQMCHit_v1());
149 auto digiHit = up_digiHit.get();
151 digiHit->set_hit_id(_hit_vector->
size());
153 digiHit->set_detector_id(hit.detectorID);
154 digiHit->set_element_id(hit.elementID);
155 digiHit->set_drift_distance(hit.driftDistance);
157 digiHit->set_pos(p_geomSvc->
getMeasurement(digiHit->get_detector_id(), digiHit->get_element_id()));
160 digiHit->set_in_time(hit.isInTime());
161 digiHit->set_hodo_mask(hit.isHodoMask());
163 digiHit->set_track_id(std::numeric_limits<int>::max());
164 digiHit->set_g4hit_id(std::numeric_limits<int>::max());
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());
181 std::cout <<
"Leaving SRawEventEmbed::process_event: " << _event << std::endl;
189 std::cout <<
"SRawEventEmbed::End" << std::endl;
200 _tout =
new TTree(
"T",
"SRawEventEmbed");
211 if(_hit_container_type.find(
"Map") != std::string::npos) {
212 _hit_map = findNode::getClass<SQHitMap>(topNode,
"SQHitMap");
219 if(_hit_container_type.find(
"Vector") != std::string::npos) {
220 _hit_vector = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
@ VERBOSITY_A_LOT
Output a lot of messages.
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
virtual int Verbosity() const
Gets the verbosity of this module.
static GeomSvc * instance()
singlton instance
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition of hit structure.
static PHTFileServer & get(void)
return reference to class singleton
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.
std::vector< Hit > & getAllHits()