BOSS 7.0.6
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtLunda.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, Pang Cai-Ying@IHEP
10//
11// Module: EvtLunda.cc
12// the necessary file: jetset74.F,lund_crm1_evtgen.F
13// fist.inc,gen.inc mix.inc stdhep.inc
14// Description: Modified Lund model at tau-charm energy level, see
15// PHYSICAL REVIEW D, VOLUME 62, 034003
16// Modification history:
17//
18// Ping R.-G. Octo., 2007 Module created
19//
20//------------------------------------------------------------------------
21
22#ifndef EVTLUNDA_HH
23#define EVTLUNDA_HH
24
26
27class EvtParticle;
28
30
31#include <iosfwd>
32
34
35public:
36
37 EvtLunda();
38 virtual ~EvtLunda();
39
40 void getName(std::string& name);
42 void decay(EvtParticle *p);
43
44 std::string commandName();
45 void command(std::string cmd);
46
47 void init();
48
49 void initProbMax();
50 int getTotalEvt(){return nevt;}
51 void LundaInit(int dummy);
53private:
54
55 void store(EvtDecayBase* jsdecay);
56 void fixPolarizations(EvtParticle* p);
57
58 static int nlundadecays;
59 static EvtDecayBasePtr* lundadecays;
60 static int ntable;
61
62 static int ncommand;
63 static int lcommand;
64 static std::string* commands;
65 static int nevt;
66};
67
68#endif
69
70
71
72
EvtDecayBase * EvtDecayBasePtr
Definition: EvtLunda.hh:29
void LundaInit(int dummy)
Definition: EvtLunda.cc:500
void initProbMax()
Definition: EvtLunda.cc:135
std::string commandName()
Definition: EvtLunda.cc:170
void decay(EvtParticle *p)
Definition: EvtLunda.cc:193
void ExclusiveDecay(EvtParticle *p)
Definition: EvtLunda.cc:512
virtual ~EvtLunda()
Definition: EvtLunda.cc:91
void command(std::string cmd)
Definition: EvtLunda.cc:176
EvtDecayBase * clone()
Definition: EvtLunda.cc:128
void init()
Definition: EvtLunda.cc:142
void getName(std::string &name)
Definition: EvtLunda.cc:122
EvtLunda()
Definition: EvtLunda.cc:90
int getTotalEvt()
Definition: EvtLunda.hh:50