Class Reference for E1039 Core & Analysis Software
PHG4SimpleEventGenerator.h
Go to the documentation of this file.
1 #ifndef PHG4SimpleEventGenerator_H__
2 #define PHG4SimpleEventGenerator_H__
3 
5 
6 #include <map>
7 #include <vector>
8 
9 #include <TGeoManager.h>
10 #include <phgeom/PHGeomUtility.h>
11 
12 class PHG4InEvent;
13 class PHCompositeNode;
14 class SQEvent;
15 class SQMCEvent;
16 class SQPrimaryVertexGen;
17 
20 
21 public:
22 
25 
26  PHG4SimpleEventGenerator(const std::string &name="EVTGENERATOR");
28 
29  int InitRun(PHCompositeNode *topNode);
30  int process_event(PHCompositeNode *topNode);
31  int End(PHCompositeNode *topNode);
32 
34  void add_particles(const std::string &name, const unsigned int count);
35 
37  void add_particles(const int pid, const unsigned int count);
38 
40  void set_t0(const double t0);
41 
43  void set_eta_range(const double eta_min, const double eta_max);
44 
46  void set_phi_range(const double phi_min, const double phi_max);
47 
50  void set_pt_range(const double pt_min, const double pt_max, const double pt_gaus_width = 0);
51 
54  void set_p_range(const double p_min, const double p_max, const double p_gaus_width = 0);
55 
58 
60  void set_vertex_distribution_mean(const double x, const double y, const double z);
61 
63  void set_vertex_distribution_width(const double x, const double y, const double z);
64 
66  void set_existing_vertex_offset_vector(const double x, const double y, const double z);
67 
70 
72  void set_vertex_size_parameters(const double mean, const double width);
73 
75  void set_pxpypz_range(
76  const double x_min, const double x_max,
77  const double y_min, const double y_max,
78  const double z_min, const double z_max
79  );
80 
82  void enableLegacyVtxGen() { _legacy_vertexgenerator = true; } //Abi
83 
84 private:
85 
86  double smearvtx(const double position, const double width, FUNCTION dist) const;
87  // these need to be stored separately until run time when the names
88  // can be translated using the GEANT4 lookup
89  std::vector<std::pair<int, unsigned int> > _particle_codes; // <pdgcode, count>
90  std::vector<std::pair<std::string, unsigned int> > _particle_names; // <names, count>
91  FUNCTION _vertex_func_x;
92  FUNCTION _vertex_func_y;
93  FUNCTION _vertex_func_z;
94  double _t0;
95  double _vertex_x;
96  double _vertex_y;
97  double _vertex_z;
98  double _vertex_width_x;
99  double _vertex_width_y;
100  double _vertex_width_z;
101  double _vertex_offset_x;
102  double _vertex_offset_y;
103  double _vertex_offset_z;
104  FUNCTION _vertex_size_func_r;
105  double _vertex_size_mean;
106  double _vertex_size_width;
107  double _eta_min;
108  double _eta_max;
109  double _phi_min;
110  double _phi_max;
111  double _pt_min;
112  double _pt_max;
113  double _pt_gaus_width;
114  double _p_min;
115  double _p_max;
116  double _p_gaus_width;
117 
118  double _px_min, _px_max;
119  double _py_min, _py_max;
120  double _pz_min, _pz_max;
121  int _eventcount;
122  PHG4InEvent* _ineve;
123  SQEvent* _evt; //< An output node
124  SQMCEvent* _mcevt; //< An output node
125 
126  bool _legacy_vertexgenerator;
127  SQPrimaryVertexGen* _vertexGen;
128 };
129 
130 #endif
Event generator to generate a set of particles under a condition of the vertex and the momentum.
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 enableLegacyVtxGen()
Enable legacy vertex gen.
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
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...