BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtTauola.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of models developed at BES collaboration
5// based on the EvtGen framework. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/BesCopyright
9// Copyright (A) 2006 Ping Rong-Gang
10//
11// Module: EvtTauola.cc
12// the necessary file: tauola2.4.F
13//
14// Description: interface to the tauola package
15//
16// Modification history:
17//
18// Ping R.-G. 2008-07-13 Module created
19//
20//------------------------------------------------------------------------
21
22#ifndef EVTTAUOLA_HH
23#define EVTTAUOLA_HH
24
26
27class EvtParticle;
28
30
31#include <iosfwd>
32
34
35public:
36 EvtTauola();
37 virtual ~EvtTauola();
38
39 void getName( std::string& name );
41 void decay( EvtParticle* p );
42
43 std::string commandName();
44 void command( std::string cmd );
45
46 void init();
47
48 void initProbMax();
49
50private:
51 void store( EvtDecayBase* jsdecay );
52 void fixPolarizations( EvtParticle* p );
53
54 static int ntauoladecays;
55 static EvtDecayBasePtr* tauoladecays;
56 static int ntable;
57
58 static int ncommand;
59 static int lcommand;
60 static std::string* commands;
61};
62
63#endif
EvtDecayBase * EvtDecayBasePtr
EvtDecayBase * EvtDecayBasePtr
Definition EvtTauola.hh:29
void init()
Definition EvtTauola.cc:98
std::string commandName()
Definition EvtTauola.cc:117
void getName(std::string &name)
Definition EvtTauola.cc:92
void command(std::string cmd)
Definition EvtTauola.cc:119
EvtDecayBase * clone()
Definition EvtTauola.cc:94
void decay(EvtParticle *p)
Definition EvtTauola.cc:142
virtual ~EvtTauola()
Definition EvtTauola.cc:61
void initProbMax()
Definition EvtTauola.cc:96