8 #include <gsl/gsl_rng.h>
9 #include <gsl/gsl_randist.h>
16 _min_integration_time(-1000.0),
17 _max_integration_time(+1000.0),
18 _collision_rate(100.0),
19 _time_between_crossings(106.0),
20 _ave_coll_per_crossing(1.0),
35 _generator->
Init(topNode);
41 cout <<
"generator ptr: " << _generator << endl;
47 _ave_coll_per_crossing = _collision_rate * _time_between_crossings * 1000.0 * 1e-9;
49 _min_crossing = _min_integration_time / _time_between_crossings;
50 _max_crossing = _max_integration_time / _time_between_crossings;
60 for (
int icrossing = _min_crossing; icrossing <= _max_crossing; ++icrossing) {
62 double crossing_time = _time_between_crossings * icrossing;
64 int ncollisions = gsl_ran_poisson(
RandomGenerator,_ave_coll_per_crossing);
65 if (icrossing == 0) --ncollisions;
67 for (
int icollision = 0; icollision < ncollisions; ++icollision) {
68 _generator->
set_t0(crossing_time);
78 _generator->
Reset(topNode);
90 _generator->
EndRun(runnumber);
96 _generator->
End(topNode);
virtual void set_t0(const double t)
virtual int InitRun(PHCompositeNode *topNode)
virtual int process_event(PHCompositeNode *topNode)
gsl_rng * RandomGenerator
int ResetEvent(PHCompositeNode *topNode)
Clean up after each event.
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.
virtual ~PHG4PileupGenerator()
virtual int EndRun(const int)
Called at the end of each run.
virtual int Init(PHCompositeNode *)
virtual int End(PHCompositeNode *)
Called at the end of all processing.
virtual int Reset(PHCompositeNode *)
Reset.
virtual int ResetEvent(PHCompositeNode *)
Clean up after each event.