Class Reference for E1039 Core & Analysis Software
PHPythia8.h
Go to the documentation of this file.
1 #ifndef __PHPYTHIA8_H__
2 #define __PHPYTHIA8_H__
3 
4 #include <fun4all/SubsysReco.h>
6 
7 #ifndef __CINT__
8 #include <Pythia8/Pythia.h>
9 #endif
10 
11 #ifndef __CINT__
12 #include <gsl/gsl_rng.h>
13 #endif
14 
15 #include <iostream>
16 #include <string>
17 
18 class PHCompositeNode;
19 class PHHepMCGenEvent;
20 class PHHepMCFilter;
21 class PHGenIntegral;
22 class PHPy8GenTrigger;
23 
24 namespace HepMC
25 {
26  class GenEvent;
27  class Pythia8ToHepMC;
28 };
29 
30 namespace Pythia8
31 {
32  class Pythia;
33 };
34 
35 class PHPythia8 : public SubsysReco
36 {
37  public:
38  PHPythia8(const std::string &name = "PHPythia8");
39  virtual ~PHPythia8();
40 
41  int Init(PHCompositeNode *topNode);
43  int ResetEvent(PHCompositeNode *topNode);
44  int End(PHCompositeNode *topNode);
45 
46  void set_config_file(const char *cfg_file)
47  {
48  if (cfg_file) _configFile = cfg_file;
49  }
50 
51  void print_config() const;
52 
54  void register_trigger(PHPy8GenTrigger *theTrigger);
56  {
57  _triggersOR = true;
58  _triggersAND = false;
59  } // default true
61  {
62  _triggersAND = true;
63  _triggersOR = false;
64  }
65 
67  void process_string(std::string s) { _commands.push_back(s); }
68  void beam_vertex_parameters(double beamX,
69  double beamY,
70  double beamZ,
71  double beamXsigma,
72  double beamYsigma,
73  double beamZsigma)
74  {
75  set_vertex_distribution_mean(beamX, beamY, beamZ, 0);
76  set_vertex_distribution_width(beamXsigma, beamYsigma, beamZsigma, 0);
77  }
78 
81  {
82  hepmc_helper.set_vertex_distribution_function(x, y, z, t);
83  }
84 
86  void set_vertex_distribution_mean(const double x, const double y, const double z, const double t)
87  {
88  hepmc_helper.set_vertex_distribution_mean(x, y, z, t);
89  }
90 
92  void set_vertex_distribution_width(const double x, const double y, const double z, const double t)
93  {
94  hepmc_helper.set_vertex_distribution_width(x, y, z, t);
95  }
96  //
98  void set_reuse_vertex(int src_embedding_id)
99  {
100  hepmc_helper.set_reuse_vertex(src_embedding_id);
101  }
102 
105  {
106  _legacy_vertexgenerator=true;
107  hepmc_helper.enableLegacyVtxGen();
108  }
110  {
111  return hepmc_helper.get_LegacyPARatio();
112  }
113 
114 
119  int get_embedding_id() const { return hepmc_helper.get_embedding_id(); }
120  //
125  void set_embedding_id(int id) { hepmc_helper.set_embedding_id(id); }
127  void save_integrated_luminosity(const bool b) { _save_integrated_luminosity = b; }
128  private:
129  int read_config(const char *cfg_file = 0);
130  int read_config_hybrid (const char *cfg_file1 = 0, const char *cfg_file2 =0);
131  int create_node_tree(PHCompositeNode *topNode);
132  double percent_diff(const double a, const double b) { return abs((a - b) / a); }
133  int _eventcount;
134 
135  // event selection
136  std::vector<PHPy8GenTrigger *> _registeredTriggers;
137  bool _triggersOR;
138  bool _triggersAND;
139 
140  // PYTHIA
141 #ifndef __CINT__
142  Pythia8::Pythia *_pythia;
143  Pythia8::Pythia *ppGen;
144  Pythia8::Pythia *pnGen;
145 #endif
146 
147  std::string _configFile;
148  std::vector<std::string> _commands;
149 
150 
151  // HepMC
152  HepMC::Pythia8ToHepMC *_pythiaToHepMC;
153 
155  PHHepMCGenHelper hepmc_helper;
156 
158  bool _save_integrated_luminosity;
159 
161  PHGenIntegral *_integral_node;
162 
164  bool _legacy_vertexgenerator;
165 };
166 
167 #endif /* __PHPYTHIA8_H__ */
PHGenIntegral.
Definition: PHGenIntegral.h:21
PHHepMCGenHelper provides service of DST upload of HepMC subevent, vertex assignment and random gener...
double get_LegacyPARatio()
void set_vertex_distribution_function(VTXFUNC x, VTXFUNC y, VTXFUNC z, VTXFUNC t)
toss a new vertex according to a Uniform or Gaus distribution
void set_vertex_distribution_width(const double x, const double y, const double z, const double t)
set the width of the vertex distribution function about the mean, use PHENIX units of cm,...
void enableLegacyVtxGen()
to use the vertex from legacy generator
int get_embedding_id() const
void set_embedding_id(int id)
VTXFUNC
supported function distributions
void set_vertex_distribution_mean(const double x, const double y, const double z, const double t)
set the mean value of the vertex distribution, use PHENIX units of cm, ns
void set_reuse_vertex(int src_embedding_id)
reuse vertex from another PHHepMCGenEvent with embedding_id = src_embedding_id Additional smearing an...
virtual ~PHPythia8()
void print_config() const
void set_trigger_AND()
Definition: PHPythia8.h:60
void set_vertex_distribution_mean(const double x, const double y, const double z, const double t)
set the mean value of the vertex distribution, use PHENIX units of cm, ns
Definition: PHPythia8.h:86
int process_event(PHCompositeNode *topNode)
void enableLegacyVtxGen()
add interface for using legacy gen vertex; Abi
Definition: PHPythia8.h:104
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void set_vertex_distribution_function(PHHepMCGenHelper::VTXFUNC x, PHHepMCGenHelper::VTXFUNC y, PHHepMCGenHelper::VTXFUNC z, PHHepMCGenHelper::VTXFUNC t)
toss a new vertex according to a Uniform or Gaus distribution
Definition: PHPythia8.h:80
PHPythia8(const std::string &name="PHPythia8")
void set_embedding_id(int id)
Definition: PHPythia8.h:125
double get_LegacyPARatio()
Definition: PHPythia8.h:109
void set_config_file(const char *cfg_file)
Definition: PHPythia8.h:46
int ResetEvent(PHCompositeNode *topNode)
Clean up after each event.
void beam_vertex_parameters(double beamX, double beamY, double beamZ, double beamXsigma, double beamYsigma, double beamZsigma)
Definition: PHPythia8.h:68
void set_vertex_distribution_width(const double x, const double y, const double z, const double t)
set the width of the vertex distribution function about the mean, use PHENIX units of cm,...
Definition: PHPythia8.h:92
void process_string(std::string s)
pass commands directly to PYTHIA8
Definition: PHPythia8.h:67
int get_embedding_id() const
Definition: PHPythia8.h:119
void save_integrated_luminosity(const bool b)
whether to store the integrated luminosity and other event statistics to the TOP/RUN/PHGenIntegral no...
Definition: PHPythia8.h:127
void set_reuse_vertex(int src_embedding_id)
reuse vertex from another PHHepMCGenEvent with embedding_id = src_embedding_id Additional smearing an...
Definition: PHPythia8.h:98
void set_trigger_OR()
Definition: PHPythia8.h:55
void register_trigger(PHPy8GenTrigger *theTrigger)
set event selection criteria
int Init(PHCompositeNode *topNode)