16 #include <Geant4/G4ParticleTable.hh>
17 #include <Geant4/G4ParticleDefinition.hh>
19 #include <gsl/gsl_randist.h>
34 _vertex_func_x(Uniform),
35 _vertex_func_y(Uniform),
36 _vertex_func_z(Uniform),
44 _vertex_offset_x(0.0),
45 _vertex_offset_y(0.0),
46 _vertex_offset_z(0.0),
47 _vertex_size_func_r(Uniform),
48 _vertex_size_mean(0.0),
49 _vertex_size_width(0.0),
60 _px_min(NAN), _px_max(NAN),
61 _py_min(NAN), _py_max(NAN),
62 _pz_min(NAN), _pz_max(NAN),
67 _legacy_vertexgenerator(false)
75 _particle_names.push_back(std::make_pair(name,num));
80 _particle_codes.push_back(std::make_pair(pid,num));
92 cout <<
"not setting eta bc etamin " << min <<
" > etamax: " << max << endl;
103 cout <<
"not setting phi bc phimin " << min <<
" > phimax: " << max << endl;
114 cout <<
"not setting pt bc ptmin " << min <<
" > ptmax: " << max << endl;
117 assert(pt_gaus_width >=0 );
121 _pt_gaus_width = pt_gaus_width;
131 cout <<
"not setting p bc ptmin " << min <<
" > ptmax: " << max << endl;
134 assert(p_gaus_width >=0 );
137 _pt_gaus_width = NAN;
140 _p_gaus_width = p_gaus_width;
166 _vertex_offset_x = x;
167 _vertex_offset_y = y;
168 _vertex_offset_z = z;
173 _vertex_size_func_r = r;
178 _vertex_size_mean = mean;
179 _vertex_size_width = width;
185 if ((_vertex_func_x !=
Uniform)&&(_vertex_func_x !=
Gaus)) {
186 cout <<
PHWHERE <<
"::Error - unknown vertex distribution function requested" << endl;
189 if ((_vertex_func_y !=
Uniform)&&(_vertex_func_y !=
Gaus)) {
190 cout <<
PHWHERE <<
"::Error - unknown vertex distribution function requested" << endl;
193 if ((_vertex_func_z !=
Uniform)&&(_vertex_func_z !=
Gaus)) {
194 cout <<
PHWHERE <<
"::Error - unknown vertex distribution function requested" << endl;
201 cout <<
PHWHERE <<
"DST Node missing. ABORTRUN." << endl;
204 _ineve = findNode::getClass<PHG4InEvent>(topNode,
"PHG4INEVENT");
209 _evt = findNode::getClass<SQEvent>(topNode,
"SQEvent");
214 _mcevt = findNode::getClass<SQMCEvent>(topNode,
"SQMCEvent");
221 cout <<
"================ PHG4SimpleEventGenerator::InitRun() ======================" << endl;
222 cout <<
" Random seed = " <<
get_seed() << endl;
223 cout <<
" Particles:" << endl;
224 for (
unsigned int i=0; i<_particle_codes.size(); ++i) {
225 cout <<
" " << _particle_codes[i].first <<
", count = " << _particle_codes[i].second << endl;
227 for (
unsigned int i=0; i<_particle_names.size(); ++i) {
228 cout <<
" " << _particle_names[i].first <<
", count = " << _particle_names[i].second << endl;
231 cout <<
" Vertex Distribution: Set to reuse a previously generated sim vertex" << endl;
232 cout <<
" Vertex offset vector (x,y,z) = (" << _vertex_offset_x <<
","<< _vertex_offset_y <<
","<< _vertex_offset_z <<
")" << endl;
234 cout <<
" Vertex Distribution Function (x,y,z) = (";
235 if (_vertex_func_x ==
Uniform) cout <<
"Uniform,";
236 else if (_vertex_func_x ==
Gaus) cout <<
"Gaus,";
237 if (_vertex_func_y ==
Uniform) cout <<
"Uniform,";
238 else if (_vertex_func_y ==
Gaus) cout <<
"Gaus,";
239 if (_vertex_func_z ==
Uniform) cout <<
"Uniform";
240 else if (_vertex_func_z ==
Gaus) cout <<
"Gaus";
242 cout <<
" Vertex mean (x,y,z) = (" << _vertex_x <<
","<< _vertex_y <<
","<< _vertex_z <<
")" << endl;
243 cout <<
" Vertex width (x,y,z) = (" << _vertex_width_x <<
","<< _vertex_width_y <<
","<< _vertex_width_z <<
")" << endl;
245 cout <<
" Vertex size function (r) = (";
246 if (_vertex_size_func_r ==
Uniform) cout <<
"Uniform";
247 else if (_vertex_size_func_r ==
Gaus) cout <<
"Gaus";
249 cout <<
" Vertex size (mean) = (" << _vertex_size_mean <<
")" << endl;
250 cout <<
" Vertex size (width) = (" << _vertex_size_width <<
")" << endl;
251 cout <<
" Eta range = " << _eta_min <<
" - " << _eta_max << endl;
252 cout <<
" Phi range = " << _phi_min <<
" - " << _phi_max << endl;
253 cout <<
" pT range = " << _pt_min <<
" - " << _pt_max << endl;
254 cout <<
" t0 = " << _t0 << endl;
255 cout <<
"===========================================================================" << endl;
259 for (
unsigned int i=0;i<_particle_codes.size();++i) {
260 int pdgcode = _particle_codes[i].first;
261 unsigned int count = _particle_codes[i].second;
263 _particle_names.push_back(make_pair(pdgname,count));
269 for (
unsigned int ii = 0; ii < _particle_names.size(); ++ii) {
270 string name = _particle_names[ii].first;
271 unsigned int num = _particle_names[ii].second;
272 if (ii > 0) oss <<
":";
273 oss << name <<
"*" << num;
277 if(! std::isnan(_px_min)) {
285 if (! _legacy_vertexgenerator) {
305 cout <<
"====================== PHG4SimpleEventGenerator::process_event() =====================" << endl;
306 cout <<
"PHG4SimpleEventGenerator::process_event - reuse_existing_vertex = "<<
reuse_existing_vertex<<endl;
309 if (_legacy_vertexgenerator) {
316 vtx_x = smearvtx(_vertex_x,_vertex_width_x,_vertex_func_x);
317 vtx_y = smearvtx(_vertex_y,_vertex_width_y,_vertex_func_y);
318 vtx_z = smearvtx(_vertex_z,_vertex_width_z,_vertex_func_z);
321 vtx_x += _vertex_offset_x;
322 vtx_y += _vertex_offset_y;
323 vtx_z += _vertex_offset_z;
333 for (
unsigned int i=0; i<_particle_names.size(); ++i) {
335 string pdgname = _particle_names[i].first;
337 unsigned int nparticles = _particle_names[i].second;
339 for (
unsigned int j=0; j<nparticles; ++j) {
341 if ((_vertex_size_width > 0.0)||(_vertex_size_mean != 0.0)) {
343 double r = smearvtx(_vertex_size_mean,_vertex_size_width,_vertex_size_func_r);
354 }
else if ((i==0)&&(j==0)) {
360 double px = std::numeric_limits<double>::max();
361 double py = std::numeric_limits<double>::max();
362 double pz = std::numeric_limits<double>::max();
364 if(std::isnan(_px_min)) {
365 double eta = (_eta_max-_eta_min) * gsl_rng_uniform_pos(
RandomGenerator) + _eta_min;
366 double phi = (_phi_max-_phi_min) * gsl_rng_uniform_pos(
RandomGenerator) + _phi_min;
369 if (!std::isnan(_p_min) && !std::isnan(_p_max) && !std::isnan(_p_gaus_width)) {
371 }
else if (!std::isnan(_pt_min) && !std::isnan(_pt_max) && !std::isnan(_pt_gaus_width)) {
374 cout <<
PHWHERE <<
"Error: neither a p range or pt range was specified" << endl;
382 px = (_px_max-_px_min) * gsl_rng_uniform_pos(
RandomGenerator) + _px_min;
383 py = (_py_max-_py_min) * gsl_rng_uniform_pos(
RandomGenerator) + _py_min;
384 pz = (_pz_max-_pz_min) * gsl_rng_uniform_pos(
RandomGenerator) + _pz_min;
388 double e = sqrt(px*px+py*py+pz*pz+m*m);
414 cout <<
"======================================================================================" << endl;
423 rc->
set_IntFlag(
"PHG4SEG_EVENT_COUNT", _eventcount);
429 const double x_max,
const double y_min,
const double y_max,
430 const double z_min,
const double z_max) {
431 _px_min = x_min; _px_max = x_max;
432 _py_min = y_min; _py_max = y_max;
433 _pz_min = z_min; _pz_max = z_max;
437 PHG4SimpleEventGenerator::smearvtx(
const double position,
const double width, FUNCTION dist)
const
439 double res = position;
444 else if (dist ==
Gaus)
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
PHBoolean addNode(PHNode *)
virtual void set_IntFlag(const std::string &name, const int flag)
virtual void set_DoubleFlag(const std::string &name, const double flag)
int AddParticle(const int vtxid, PHG4Particle *particle)
int AddVtx(const double x, const double y, const double z, const double t)
virtual void identify(std::ostream &os=std::cout) const
void AddEmbeddedParticle(PHG4Particle *particle, int flag)
int get_reuse_existing_vertex() const
int get_pdgcode(const std::string &name) const
virtual int ReuseExistingVertex(PHCompositeNode *topNode)
std::string get_pdgname(const int pdgcode) const
unsigned int get_seed() const
double get_mass(const int pdgcode) const
gsl_rng * RandomGenerator
int reuse_existing_vertex
virtual void set_parent_id(const int i)
virtual void set_vtx_id(const int i)
virtual void set_pid(const int i)
virtual void set_e(const double e)
virtual void set_py(const double x)
virtual void set_track_id(const int i)
virtual void set_name(const std::string &name)
virtual void set_px(const double x)
virtual void set_pz(const double x)
void set_t0(const double t0)
set the starting time for the event
void add_particles(const std::string &name, const unsigned int count)
interface for adding particles by name
void set_pxpypz_range(const double x_min, const double x_max, const double y_min, const double y_max, const double z_min, const double z_max)
void set_phi_range(const double phi_min, const double phi_max)
range of randomized phi values
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void set_vertex_size_function(FUNCTION r)
set the distribution function of particles about the vertex
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void set_eta_range(const double eta_min, const double eta_max)
range of randomized eta values
void set_vertex_distribution_width(const double x, const double y, const double z)
set the width of the vertex distribution function about the mean
PHG4SimpleEventGenerator(const std::string &name="EVTGENERATOR")
void set_vertex_size_parameters(const double mean, const double width)
set the dimensions of the distribution of particles about the vertex
void set_pt_range(const double pt_min, const double pt_max, const double pt_gaus_width=0)
FUNCTION
supported function distributions
void set_p_range(const double p_min, const double p_max, const double p_gaus_width=0)
void set_vertex_distribution_mean(const double x, const double y, const double z)
set the mean value of the vertex distribution
void set_vertex_distribution_function(FUNCTION x, FUNCTION y, FUNCTION z)
toss a new vertex according to a Uniform or Gaus distribution
void set_existing_vertex_offset_vector(const double x, const double y, const double z)
set an offset vector from the existing vertex
PHNode * findFirst(const std::string &, const std::string &)
virtual void set_spill_id(const int a)=0
virtual void set_event_id(const int a)=0
virtual void set_run_id(const int a)=0
virtual void set_weight(const double a)=0
virtual void set_cross_section(const double a)=0
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...
TVector3 generateVertex()
generate 3-D vertex position
int InitRun(PHCompositeNode *node)
Initialize at the begining of Run.
static recoConsts * instance()
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables