Class Reference for E1039 Core & Analysis Software
PHHepMCGenHelper.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_PHHEPMC_PHHEPMCGENHELPER_H_
12 #define SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_PHHEPMC_PHHEPMCGENHELPER_H_
13 
14 
15 
16 class PHCompositeNode;
17 class PHHepMCGenEvent;
18 class PHHepMCGenEventMap;
19 class SQPrimaryVertexGen; //Abi
20 
21 namespace HepMC
22 {
23  class GenEvent;
24 };
25 
26 #ifndef __CINT__
27 #include <gsl/gsl_rng.h>
28 #endif
29 
34 {
35  public:
37  virtual ~PHHepMCGenHelper();
38 
40  enum VTXFUNC
41  {
45  Gaus
46  };
47 
50 
52  void set_vertex_distribution_mean(const double x, const double y, const double z, const double t);
53 
55  void set_vertex_distribution_width(const double x, const double y, const double z, const double t);
56 
61  int get_embedding_id() const { return _embedding_id; }
62  //
67  void set_embedding_id(int id) { _embedding_id = id; }
68  //
70  void set_reuse_vertex(int src_embedding_id)
71  {
72  _reuse_vertex = true;
73  _reuse_vertex_embedding_id = src_embedding_id;
74  }
75 
76  //
78  int create_node_tree(PHCompositeNode *topNode);
79 
81  PHHepMCGenEvent *insert_event(HepMC::GenEvent *evt);
82 
84  void move_vertex(PHHepMCGenEvent *genevent);
85 
87  {
88  return _geneventmap;
89  }
90 
92  {
93  return _geneventmap;
94  }
95 
96 #ifndef __CINT__
97  gsl_rng * get_random_generator() {return RandomGenerator;}
98 #endif
99 
101  {
102  _geneventmap = geneventmap;
103  }
104 
106  void enableLegacyVtxGen() { _legacy_vertexgenerator = true; }
107  double get_LegacyPARatio(){return _paratio;}
108 
109  protected:
110 #ifndef __CINT__
111  gsl_rng *RandomGenerator;
112 #endif
113 
114  double smear(const double position, const double width, VTXFUNC dist) const;
115 
116  private:
117  VTXFUNC _vertex_func_x;
118  VTXFUNC _vertex_func_y;
119  VTXFUNC _vertex_func_z;
120  VTXFUNC _vertex_func_t;
121 
122  double _vertex_x;
123  double _vertex_y;
124  double _vertex_z;
125  double _vertex_t;
126 
127  double _vertex_width_x;
128  double _vertex_width_y;
129  double _vertex_width_z;
130  double _vertex_width_t;
131 
135  int _embedding_id;
136 
138  bool _reuse_vertex;
139 
141  int _reuse_vertex_embedding_id;
142 
144  PHHepMCGenEventMap *_geneventmap;
145 
147  SQPrimaryVertexGen* _vertexGen;
148  bool _legacy_vertexgenerator;
149  double _paratio;
150 };
151 
152 #endif /* SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_PHHEPMC_PHHEPMCGENHELPER_H_ */
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
PHHepMCGenHelper provides service of DST upload of HepMC subevent, vertex assignment and random gener...
double get_LegacyPARatio()
void set_geneventmap(PHHepMCGenEventMap *geneventmap)
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,...
PHHepMCGenEventMap * get_geneventmap()
virtual ~PHHepMCGenHelper()
void enableLegacyVtxGen()
to use the vertex from legacy generator
int create_node_tree(PHCompositeNode *topNode)
init interface nodes
const PHHepMCGenEventMap * get_geneventmap() const
int get_embedding_id() const
void set_embedding_id(int id)
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 * get_random_generator()
gsl_rng * RandomGenerator
void set_reuse_vertex(int src_embedding_id)
reuse vertex from another PHHepMCGenEvent with embedding_id = src_embedding_id Additional smearing an...
void move_vertex(PHHepMCGenEvent *genevent)
move vertex according to vertex settings
double smear(const double position, const double width, VTXFUNC dist) const
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...