Class Reference for E1039 Core & Analysis Software
PHG4ParticleGeneratorVectorMeson.h
Go to the documentation of this file.
1 #ifndef PHG4ParticleGeneratorVectorMeson_H__
2 #define PHG4ParticleGeneratorVectorMeson_H__
3 
5 #include <map>
6 
7 class PHG4InEvent;
8 class TRandom;
9 class TF1;
10 
12 {
13  public:
16 
17  explicit PHG4ParticleGeneratorVectorMeson(const std::string &name="PGUN");
19 
20  int InitRun(PHCompositeNode *topNode);
21  int process_event(PHCompositeNode *topNode);
22 
24  void add_decay_particles(const std::string &name1, const std::string &name2, const unsigned int decay_id);
25 
26  void set_decay_vertex_offset(double dx, double dy, double dz, const unsigned int decay_id);
27  void set_eta_range(const double eta_min, const double eta_max);
28  void set_rapidity_range(const double y_min, const double y_max);
29  void set_mom_range(const double mom_min, const double mom_max);
30  void set_pt_range(const double pt_min, const double pt_max);
33 
35  void set_vertex_distribution_mean(const double x, const double y, const double z);
36 
38  void set_vertex_distribution_width(const double x, const double y, const double z);
39 
41  void set_existing_vertex_offset_vector(const double x, const double y, const double z);
42 
45 
47  void set_vertex_size_parameters(const double mean, const double width);
48 
49  void set_read_vtx_from_hepmc(bool read_vtx) { read_vtx_from_hepmc = read_vtx;}
50 
51  void set_mass(const double mass);
52  void set_width(const double width);
53  void set_decay_types(const std::string &decay1, const std::string &decay2);
54  void set_histrand_init(const int initflag) {_histrand_init = initflag;}
55 
56  private:
57 
58  double smearvtx(const double position, const double width, FUNCTION dist) const;
59  std::map<unsigned int, int> decay1_codes; // <pdgcode, count>
60  std::map<unsigned int, std::string> decay1_names; // <names, count>
61  std::map<unsigned int, int> decay2_codes; // <pdgcode, count>
62  std::map<unsigned int, std::string> decay2_names; // <names, count>
63  std::map<unsigned int, double> decay_vtx_offset_x;
64  std::map<unsigned int, double> decay_vtx_offset_y;
65  std::map<unsigned int, double> decay_vtx_offset_z;
66 
67  protected:
68 
72  double _t0;
73  double _vertex_x;// primary vertex (or mean) x component, cf. vtx_x = track-by-track vertex x component
74  double _vertex_y;// primary vertex (or mean) y component, cf. vtx_y = track-by-track vertex y component
75  double _vertex_z;// primary vertex (or mean)z component, cf. vtx_z = track-by-track vertex z component
76  double _vertex_width_x; // sigma x if not use existing vtx
77  double _vertex_width_y; // sigma y if not use existing vtx
78  double _vertex_width_z; // sigma z if not use existing vtx
79  double _vertex_offset_x; // track-by-track decay vertex offset if use existing vtx
80  double _vertex_offset_y; // track-by-track decay vertex offset if use existing vtx
81  double _vertex_offset_z; // track-by-track decay vertex offset if use existing vtx
86 
87  double y_min;
88  double y_max;
89  double eta_min;
90  double eta_max;
91  double mom_min;
92  double mom_max;
93  double pt_min;
94  double pt_max;
95  double mass;
96  double width;
97  double m1;
98  double m2;
100  std::string decay1;
101  std::string decay2;
102 
103  TF1 *fsin;
104  TF1 *frap;
105  TF1 *fpt;
106  TRandom *trand;
107 
109 
110 };
111 
112 #endif
void set_vertex_size_parameters(const double mean, const double width)
set the dimensions of the distribution of particles about the vertex
void set_existing_vertex_offset_vector(const double x, const double y, const double z)
set an offset vector from the existing vertex
void set_decay_types(const std::string &decay1, const std::string &decay2)
void set_vertex_size_function(FUNCTION r)
set the distribution function of particles about the vertex
void set_decay_vertex_offset(double dx, double dy, double dz, const unsigned int decay_id)
void set_eta_range(const double eta_min, const double eta_max)
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_rapidity_range(const double y_min, const double y_max)
void set_mom_range(const double mom_min, const double mom_max)
void set_pt_range(const double pt_min, const double pt_max)
void add_decay_particles(const std::string &name1, const std::string &name2, const unsigned int decay_id)
interface for adding particles by name
PHG4ParticleGeneratorVectorMeson(const std::string &name="PGUN")
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