Class Reference for E1039 Core & Analysis Software
PHG4PSScanGenerator.h
Go to the documentation of this file.
1 #ifndef PHG4PSScanGenerator_H__
2 #define PHG4PSScanGenerator_H__
3 
5 
6 #include <map>
7 #include <vector>
8 
9 class PHG4InEvent;
10 class PHCompositeNode;
11 
13 
14 public:
15 
17  enum FUNCTION {
19  };
20 
21  PHG4PSScanGenerator(const std::string &name = "EVTGENERATOR");
23  }
24 
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27 
29  void add_particles(const std::string &name, const unsigned int count);
30 
32  void add_particles(const int pid, const unsigned int count);
33 
35  void set_t0(const double t0);
36 
38  void set_eta_range(const double eta_min, const double eta_max);
39 
41  void set_phi_range(const double phi_min, const double phi_max);
42 
45  void set_pt_range(const double pt_min, const double pt_max,
46  const double pt_gaus_width = 0);
47 
50  void set_p_range(const double p_min, const double p_max,
51  const double p_gaus_width = 0);
52 
55 
57  void set_vertex_distribution_mean(const double x, const double y,
58  const double z);
59 
61  void set_vertex_distribution_width(const double x, const double y,
62  const double z);
63 
65  void set_existing_vertex_offset_vector(const double x, const double y,
66  const double z);
67 
70 
72  void set_vertex_size_parameters(const double mean, const double width);
73 
75  void set_pxpypz_range(const double x_min, const double x_max,
76  const double y_min, const double y_max, const double z_min,
77  const double z_max);
78 
79  double get_px_step() const {
80  return _px_step;
81  }
82 
83  void set_px_step(double pxStep) {
84  _px_step = pxStep;
85  }
86 
87  double get_py_step() const {
88  return _py_step;
89  }
90 
91  void set_py_step(double pyStep) {
92  _py_step = pyStep;
93  }
94 
95  double get_pz_step() const {
96  return _pz_step;
97  }
98 
99  void set_pz_step(double pzStep) {
100  _pz_step = pzStep;
101  }
102 
103 private:
104 
105  int _event;
106  double _px_step;
107  double _py_step;
108  double _pz_step;
109 
110  double smearvtx(const double position, const double width,
111  FUNCTION dist) const;
112  // these need to be stored separately until run time when the names
113  // can be translated using the GEANT4 lookup
114  std::vector<std::pair<int, unsigned int> > _particle_codes; // <pdgcode, count>
115  std::vector<std::pair<std::string, unsigned int> > _particle_names; // <names, count>
116  FUNCTION _vertex_func_x;
117  FUNCTION _vertex_func_y;
118  FUNCTION _vertex_func_z;
119  double _t0;
120  double _vertex_x;
121  double _vertex_y;
122  double _vertex_z;
123  double _vertex_width_x;
124  double _vertex_width_y;
125  double _vertex_width_z;
126  double _vertex_offset_x;
127  double _vertex_offset_y;
128  double _vertex_offset_z;
129  FUNCTION _vertex_size_func_r;
130  double _vertex_size_mean;
131  double _vertex_size_width;
132  double _eta_min;
133  double _eta_max;
134  double _phi_min;
135  double _phi_max;
136  double _pt_min;
137  double _pt_max;
138  double _pt_gaus_width;
139  double _p_min;
140  double _p_max;
141  double _p_gaus_width;
142 
143  double _px_min, _px_max;
144  double _py_min, _py_max;
145  double _pz_min, _pz_max;
146 
147  PHG4InEvent* _ineve;
148 };
149 
150 #endif
void set_py_step(double pyStep)
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
void set_p_range(const double p_min, const double p_max, const double p_gaus_width=0)
void set_eta_range(const double eta_min, const double eta_max)
range of randomized eta values
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)
double get_px_step() const
double get_pz_step() const
void set_vertex_size_function(FUNCTION r)
set the distribution function of particles about the vertex
FUNCTION
supported function distributions
void set_t0(const double t0)
set the starting time for the event
void set_vertex_distribution_mean(const double x, const double y, const double z)
set the mean value of the vertex distribution
void set_existing_vertex_offset_vector(const double x, const double y, const double z)
set an offset vector from the existing vertex
int process_event(PHCompositeNode *topNode)
void add_particles(const std::string &name, const unsigned int count)
interface for adding particles by name
void set_vertex_size_parameters(const double mean, const double width)
set the dimensions of the distribution of particles about the vertex
int InitRun(PHCompositeNode *topNode)
void set_vertex_distribution_function(FUNCTION x, FUNCTION y, FUNCTION z)
toss a new vertex according to a Uniform or Gaus distribution
void set_phi_range(const double phi_min, const double phi_max)
range of randomized phi values
double get_py_step() const
void set_px_step(double pxStep)
PHG4PSScanGenerator(const std::string &name="EVTGENERATOR")
void set_pz_step(double pzStep)
void set_pt_range(const double pt_min, const double pt_max, const double pt_gaus_width=0)