BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtFDC.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 @IHEP
10//
11// Module: EvtFDC.cc
12//
13// Description: Model provided by user, see the mannual
14//
15// Modification history:
16//
17// Ping R.-G. December, 2006 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTFDC_HH
22#define EVTFDC_HH
23
26
27class EvtParticle;
28
29class EvtFDC : public EvtDecayIncoherent {
30
31public:
32 EvtFDC() {}
33 virtual ~EvtFDC();
34
35 void getName( std::string& name );
36
38
39 void initProbMax();
40
41 void init();
42
43 void decay( EvtParticle* p );
44
46
47 int GetNdaug() { return _nd; }
48 void setEvtMomentum( EvtVector4R* p4 );
49
50private:
51 double e[10], px[10], py[10], pz[10];
52 EvtVector4R _p4[10];
53 int _nd;
54};
55
56#endif
void getName(std::string &name)
Definition EvtFDC.cc:63
void init()
Definition EvtFDC.cc:67
virtual ~EvtFDC()
Definition EvtFDC.cc:61
EvtFDC()
Definition EvtFDC.hh:32
double AmplitudeSquare()
void initProbMax()
Definition EvtFDC.cc:77
void setEvtMomentum(EvtVector4R *p4)
Definition EvtFDC.cc:82
int GetNdaug()
Definition EvtFDC.hh:47
EvtDecayBase * clone()
Definition EvtFDC.cc:65
void decay(EvtParticle *p)
Definition EvtFDC.cc:92