BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
BesTwogam.h
Go to the documentation of this file.
1//*****************************************************************************
2//
3// Algorithm runs gamma-gamma event generator Twogam
4// (A. Olchevski, S.Nova, T.Todorov, DELPHI note 90-35)
5// and stores output to transient store
6//
7// Nov 2007 Original BES3 code by Dima Dedovich
8//
9//*****************************************************************************
10
11#ifndef GENERATORMODULESEVTDECAY_H
12#define GENERATORMODULESEVTDECAY_H
13
14#include "HepMC/GenEvent.h"
15#include "HepMC/GenParticle.h"
16
17#include "GaudiKernel/Algorithm.h"
18#include "GaudiKernel/ISvcLocator.h"
19
20#include <vector>
21
22using namespace std;
23
24class BesTwogam : public Algorithm {
25public:
26 BesTwogam( const string& name, ISvcLocator* pSvcLocator );
27
28 StatusCode initialize();
29 StatusCode execute();
30 StatusCode finalize();
31
32private:
33 int m_numberEvent;
34 int m_seed;
35 int m_unw;
36 float m_cmEnergy;
37 float m_m2min;
38 std::string m_fcard;
39 std::vector<std::string> m_pypars;
40 // double xpar[100];
41 // int npar[100];
42 // jobOption params
43 // Initial Seed
44 // std::vector<int> m_initSeed;
45};
46
47#endif
BesTwogam(const string &name, ISvcLocator *pSvcLocator)
StatusCode execute()
StatusCode finalize()
StatusCode initialize()