Class Reference for E1039 Core & Analysis Software
PHG4PileupGenerator.h
Go to the documentation of this file.
1 #ifndef PHG4PileupGenerator_H__
2 #define PHG4PileupGenerator_H__
3 
5 
6 class SubsysReco;
7 class PHCompositeNode;
8 
10 
11 public:
12 
13  PHG4PileupGenerator(const std::string &name="PILEUPGENERATOR");
14  virtual ~PHG4PileupGenerator();
15 
16  int Init(PHCompositeNode *topNode);
17  int InitRun(PHCompositeNode *topNode);
18  int process_event(PHCompositeNode *topNode);
19  int Reset(PHCompositeNode *topNode);
20  int ResetEvent(PHCompositeNode *topNode);
21  int EndRun(const int runnumber);
22  int End(PHCompositeNode *topNode);
23 
24  void set_generator(PHG4ParticleGeneratorBase* generator) {_generator = generator;}
25 
27  void set_time_window(double past_nsec,double future_nsec) {
28  _min_integration_time = past_nsec;
29  _max_integration_time = future_nsec;
30  }
31  void set_collision_rate(double kHz) {_collision_rate = kHz;}
32  void set_time_between_crossings(double nsec) {_time_between_crossings = nsec;}
33 
34 private:
35 
36  PHG4ParticleGeneratorBase* _generator;
37 
38  double _min_integration_time;
39  double _max_integration_time;
40  double _collision_rate;
41  double _time_between_crossings;
42 
43  double _ave_coll_per_crossing;
44  int _min_crossing;
45  int _max_crossing;
46 };
47 
48 #endif
void set_time_between_crossings(double nsec)
int ResetEvent(PHCompositeNode *topNode)
Clean up after each event.
void set_generator(PHG4ParticleGeneratorBase *generator)
int Reset(PHCompositeNode *topNode)
Reset.
int End(PHCompositeNode *topNode)
Called at the end of all processing.
PHG4PileupGenerator(const std::string &name="PILEUPGENERATOR")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int EndRun(const int runnumber)
Called at the end of each run.
void set_time_window(double past_nsec, double future_nsec)
past times are negative, future times are positive
void set_collision_rate(double kHz)