Class Reference for E1039 Core & Analysis Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PHG4PileupGenerator.cc
Go to the documentation of this file.
1 #include "PHG4PileupGenerator.h"
2 
4 
6 #include <phool/PHRandomSeed.h>
7 
8 #include <gsl/gsl_rng.h>
9 #include <gsl/gsl_randist.h>
10 
11 using namespace std;
12 
15  _generator(NULL),
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), // recalculated
21  _min_crossing(0), // recalculated
22  _max_crossing(0) { // recalculated
23  return;
24 }
25 
27  if (_generator) {
28  delete _generator;
29  _generator = NULL;
30  }
31 }
32 
34  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
35  _generator->Init(topNode);
37 }
38 
40 
41  cout << "generator ptr: " << _generator << endl;
42 
43  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
44 
45  _generator->InitRun(topNode);
46 
47  _ave_coll_per_crossing = _collision_rate * _time_between_crossings * 1000.0 * 1e-9;
48 
49  _min_crossing = _min_integration_time / _time_between_crossings;
50  _max_crossing = _max_integration_time / _time_between_crossings;
51 
53 }
54 
56 
57  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
58 
59  // toss multiple crossings all the way back
60  for (int icrossing = _min_crossing; icrossing <= _max_crossing; ++icrossing) {
61 
62  double crossing_time = _time_between_crossings * icrossing;
63 
64  int ncollisions = gsl_ran_poisson(RandomGenerator,_ave_coll_per_crossing);
65  if (icrossing == 0) --ncollisions;
66 
67  for (int icollision = 0; icollision < ncollisions; ++icollision) {
68  _generator->set_t0(crossing_time);
69  _generator->process_event(topNode);
70  }
71  }
72 
74 }
75 
77  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
78  _generator->Reset(topNode);
80 }
81 
83  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
84  _generator->ResetEvent(topNode);
86 }
87 
88 int PHG4PileupGenerator::EndRun(const int runnumber) {
89  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
90  _generator->EndRun(runnumber);
92 }
93 
95  if (!_generator) return Fun4AllReturnCodes::EVENT_OK;
96  _generator->End(topNode);
98 }
#define NULL
Definition: Pdb.h:9
virtual void set_t0(const double t)
virtual int InitRun(PHCompositeNode *topNode)
virtual int process_event(PHCompositeNode *topNode)
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 int EndRun(const int)
Called at the end of each run.
Definition: SubsysReco.h:34
virtual int Init(PHCompositeNode *)
Definition: SubsysReco.h:41
virtual int End(PHCompositeNode *)
Called at the end of all processing.
Definition: SubsysReco.h:31
virtual int Reset(PHCompositeNode *)
Reset.
Definition: SubsysReco.h:55
virtual int ResetEvent(PHCompositeNode *)
Clean up after each event.
Definition: SubsysReco.h:58