Class Reference for E1039 Core & Analysis Software
HepMCNodeReader.h
Go to the documentation of this file.
1 #ifndef HEPMCNODEREADER_H__
2 #define HEPMCNODEREADER_H__
3 
4 #include <fun4all/SubsysReco.h>
5 
6 // rootcint barfs with this header so we need to hide it
7 #ifndef __CINT__
8 #include <gsl/gsl_rng.h>
9 #endif
10 
11 #include <string>
12 #include <vector>
13 
14 class PHHepMCGenEvent;
15 class PHCompositeNode;
16 namespace HepMC {
17  class GenParticle;
18 }
19 
23 {
24  public:
25  HepMCNodeReader(const std::string &name = "HEPMCREADER");
26  virtual ~HepMCNodeReader();
27 
28  int Init(PHCompositeNode *topNode);
29  int process_event(PHCompositeNode *topNode);
30 
33  void Embed(const int i = 1);
34 
38  void VertexPosition(const double v_x, const double v_y, const double v_z);
39 
44  void SmearVertex(const double s_x, const double s_y, const double s_z);
45 
48  void SetT0(const double t0) { vertex_t0 = t0; }
49  //
51  void SetSeed(const unsigned int i)
52  {
53  seed = i;
54  use_seed = 1;
55  }
56 
57  void set_particle_filter_on(const bool a) {_particle_filter_on = a;}
58  void insert_particle_filter_pid(const int a) {_particle_filter_pid.push_back(a);}
59 
60  void enable_position_filter(const double x_min, const double x_max, const double y_min, const double y_max, const double z_min, const double z_max);
61 
62  bool PassParticleFilter(HepMC::GenParticle * p);
63 
66  void Set_bkg_mode(){_bkg_mode = true;}// abi
68  void Set_pxy2pz_rat (const double rat){_pxy2pz_rat = rat;}
70 
71  private:
72  double smeargauss(const double width);
73  double smearflat(const double width);
74  int use_seed;
75  unsigned int seed;
76  double vertex_pos_x;
77  double vertex_pos_y;
78  double vertex_pos_z;
79  double vertex_t0;
80  double width_vx;
81  double width_vy;
82  double width_vz;
83 
84  bool _particle_filter_on;
85  std::vector<int> _particle_filter_pid;
86 
88  bool _bkg_mode;
89  double _pxy2pz_rat;//Abi
91 
92  bool _position_filter_on;
93  double _pos_filter_x_min;
94  double _pos_filter_x_max;
95  double _pos_filter_y_min;
96  double _pos_filter_y_max;
97  double _pos_filter_z_min;
98  double _pos_filter_z_max;
99 
100 #ifndef __CINT__
101  gsl_rng *RandomGenerator;
102 #endif
103 };
104 
105 #endif
void VertexPosition(const double v_x, const double v_y, const double v_z)
void insert_particle_filter_pid(const int a)
void enable_position_filter(const double x_min, const double x_max, const double y_min, const double y_max, const double z_min, const double z_max)
Enable and define a position filter. The x,y,z limits are in cm.
void SmearVertex(const double s_x, const double s_y, const double s_z)
int Init(PHCompositeNode *topNode)
bool PassParticleFilter(HepMC::GenParticle *p)
void Embed(const int i=1)
virtual ~HepMCNodeReader()
int process_event(PHCompositeNode *topNode)
void SetT0(const double t0)
HepMCNodeReader(const std::string &name="HEPMCREADER")
void Set_pxy2pz_rat(const double rat)
Sets the minimum Px(y)/Pz cut for inclusvie background generation.
void set_particle_filter_on(const bool a)
void SetSeed(const unsigned int i)
Override seed.