22 #include <HepMC/GenEvent.h>
23 #include <HepMC/IO_GenEvent.h>
26 #include <gsl/gsl_const.h>
27 #include <gsl/gsl_randist.h>
28 #include <gsl/gsl_rng.h>
37 : _vertex_func_x(Gaus)
38 , _vertex_func_y(Gaus)
39 , _vertex_func_z(Gaus)
40 , _vertex_func_t(Gaus)
50 , _reuse_vertex(false)
51 , _reuse_vertex_embedding_id(numeric_limits<int>::min())
52 , _geneventmap(nullptr)
53 , _legacy_vertexgenerator(false)
76 cout <<
PHWHERE <<
"DST Node missing doing nothing" << endl;
80 _geneventmap = findNode::getClass<PHHepMCGenEventMap>(dstNode,
"PHHepMCGenEventMap");
100 assert(_geneventmap);
114 assert(_vertex_width_x >= 0);
117 if( _legacy_vertexgenerator)
121 genevent->
moveVertex(vtx.X(), vtx.Y(), vtx.Z(), _vertex_func_t);
126 assert(_geneventmap);
129 _geneventmap->
get(_reuse_vertex_embedding_id);
133 cout <<
"PHHepMCGenHelper::move_vertex - Fatal Error - the requested source subevent with embedding ID "
134 << _reuse_vertex_embedding_id <<
" does not exist. Current HepMCEventMap:";
149 (
smear(_vertex_x, _vertex_width_x, _vertex_func_x)),
150 (
smear(_vertex_y, _vertex_width_y, _vertex_func_y)),
151 (
smear(_vertex_z, _vertex_width_z, _vertex_func_z)),
152 (
smear(_vertex_t, _vertex_width_t, _vertex_func_t)));
190 double res = position;
197 res = (position - width) + 2 * gsl_rng_uniform_pos(
RandomGenerator) * width;
199 else if (dist ==
Gaus)
205 cout <<
"PHHepMCGenHelper::smear - FATAL Error - unknown vertex function " << dist << endl;
PHBoolean addNode(PHNode *)
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
const PHHepMCGenEvent * get(int idkey) const
fetch event
PHHepMCGenEvent * insert_event(const int embedding_id, const PHHepMCGenEvent *event=nullptr)
insert a event with specific embedding ID
void identify(std::ostream &os=std::cout) const
const HepMC::FourVector & get_collision_vertex() const
collision vertex position in the Hall coordinate system, use PHENIX units of cm, ns
bool addEvent(HepMC::GenEvent *evt)
host an HepMC event
virtual void moveVertex(double x, double y, double z, double t=0)
move the collision vertex position in the Hall coordinate system, use PHENIX units of cm,...
void set_vertex_distribution_function(VTXFUNC x, VTXFUNC y, VTXFUNC z, VTXFUNC t)
toss a new vertex according to a Uniform or Gaus distribution
void set_vertex_distribution_width(const double x, const double y, const double z, const double t)
set the width of the vertex distribution function about the mean, use PHENIX units of cm,...
virtual ~PHHepMCGenHelper()
int create_node_tree(PHCompositeNode *topNode)
init interface nodes
VTXFUNC
supported function distributions
@ Gaus
normal distribution with sigma width set via set_vertex_distribution_width()
@ Uniform
uniform distribution with half width set via set_vertex_distribution_width()
void set_vertex_distribution_mean(const double x, const double y, const double z, const double t)
set the mean value of the vertex distribution, use PHENIX units of cm, ns
PHHepMCGenEvent * insert_event(HepMC::GenEvent *evt)
send HepMC::GenEvent to DST tree. This function takes ownership of evt
gsl_rng * RandomGenerator
void move_vertex(PHHepMCGenEvent *genevent)
move vertex according to vertex settings
double smear(const double position, const double width, VTXFUNC dist) const
PHNode * findFirst(const std::string &, const std::string &)
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...
double getPARatio()
get the proton/neutron ratio of the piece, must be called after generateVertex
TVector3 generateVertex()
generate 3-D vertex position
int InitRun(PHCompositeNode *node)
Initialize at the begining of Run.