Class Reference for E1039 Core & Analysis Software
PHG4ParticleGeneratorD0.h
Go to the documentation of this file.
1 #ifndef PHG4ParticleGeneratorD0_H__
2 #define PHG4ParticleGeneratorD0_H__
3 
5 
6 class TF1;
7 
9 {
10  public:
11  PHG4ParticleGeneratorD0(const std::string &name="D0GEN");
13 
14  int InitRun(PHCompositeNode *topNode);
15  int process_event(PHCompositeNode *topNode);
16 
17  void set_eta_range(const double eta_min, const double eta_max);
18  void set_rapidity_range(const double y_min, const double y_max);
19  void set_mom_range(const double mom_min, const double mom_max);
20  void set_pt_range(const double pt_min, const double pt_max);
21  void set_vtx_zrange(const double zmin, const double zmax);
22  void set_mass(const double mass);
23 
24  protected:
25  double vtx_zmin;
26  double vtx_zmax;
27  double y_min;
28  double y_max;
29  double eta_min;
30  double eta_max;
31  double mom_min;
32  double mom_max;
33  double pt_min;
34  double pt_max;
35  double mass;
36  double m1;
37  double m2;
38 
39  TF1 *fsin;
40  TF1 *frap;
41  TF1 *fpt;
42 
43 };
44 
45 #endif
void set_mom_range(const double mom_min, const double mom_max)
int process_event(PHCompositeNode *topNode)
void set_pt_range(const double pt_min, const double pt_max)
void set_eta_range(const double eta_min, const double eta_max)
PHG4ParticleGeneratorD0(const std::string &name="D0GEN")
void set_rapidity_range(const double y_min, const double y_max)
int InitRun(PHCompositeNode *topNode)
void set_vtx_zrange(const double zmin, const double zmax)
void set_mass(const double mass)