Class Reference for E1039 Core & Analysis Software
Fun4AllHepMCPileupInputManager.h
Go to the documentation of this file.
1 #ifndef FUN4ALLHEPMCPILEUPINPUTMANAGER_H__
2 #define FUN4ALLHEPMCPILEUPINPUTMANAGER_H__
3 
5 
7 
8 #include <string>
9 #include <map>
10 #include <fstream>
11 #include <iostream>
12 
13 #ifndef __CINT__
14 #include <gsl/gsl_rng.h>
15 #endif
16 
17 // forward declaration of classes in namespace
18 namespace HepMC
19 {
20  class IO_GenEvent;
21  class GenEvent;
22 };
23 
24 class PHCompositeNode;
25 
30 {
31  public:
32  Fun4AllHepMCPileupInputManager(const std::string &name = "DUMMY",
33  const std::string &nodename = "DST",
34  const std::string &topnodename = "TOP");
36 
37  int run(const int nevents = 0);
38 
40  void set_time_window(double past_nsec,double future_nsec) {
41  _min_integration_time = past_nsec;
42  _max_integration_time = future_nsec;
43  }
44 
46  void set_collision_rate(double Hz) {_collision_rate = Hz;}
48  void set_time_between_crossings(double nsec) {_time_between_crossings = nsec;}
49 
50  private:
51 
53  double _min_integration_time;
54  double _max_integration_time;
56  double _collision_rate;
58  double _time_between_crossings;
59 
60  //derived parameters
61  double _ave_coll_per_crossing;
62  int _min_crossing;
63  int _max_crossing;
64 
65  bool _first_run;
66 
67 #ifndef __CINT__
68  gsl_rng *RandomGenerator;
69 #endif
70 
71 // unsigned int seed;
72 //#ifndef __CINT__
73 // gsl_rng *RandomGenerator;
74 //#endif
75 };
76 
77 #endif /* __FUN4ALLHEPMCINPUTMANAGER_H__ */
void set_collision_rate(double Hz)
collision rate in Hz
void set_time_between_crossings(double nsec)
time between bunch crossing in ns
Fun4AllHepMCPileupInputManager(const std::string &name="DUMMY", const std::string &nodename="DST", const std::string &topnodename="TOP")
void set_time_window(double past_nsec, double future_nsec)
past times are negative, future times are positive