Class Reference for E1039 Core & Analysis Software
PHG4ParticleGenerator.h
Go to the documentation of this file.
1 #ifndef PHG4ParticleGenerator_H__
2 #define PHG4ParticleGenerator_H__
3 
5 
6 
8 {
9  public:
10  PHG4ParticleGenerator(const std::string &name="PGENERATOR");
12 
13  int process_event(PHCompositeNode *topNode);
14  void set_z_range(const double z_min, const double z_max);
15  void set_eta_range(const double eta_min, const double eta_max);
16  void set_phi_range(const double phi_min, const double phi_max);
17  void set_mom_range(const double mom_min, const double mom_max);
18 
19  protected:
20  double z_min;
21  double z_max;
22  double eta_min;
23  double eta_max;
24  double phi_min;
25  double phi_max;
26  double mom_min;
27  double mom_max;
28 };
29 
30 #endif
int process_event(PHCompositeNode *topNode)
void set_mom_range(const double mom_min, const double mom_max)
void set_eta_range(const double eta_min, const double eta_max)
void set_phi_range(const double phi_min, const double phi_max)
void set_z_range(const double z_min, const double z_max)
PHG4ParticleGenerator(const std::string &name="PGENERATOR")