BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtPBB2.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: EvtPBB2.hh
12//
13// Description: Routine to decay pseudoscalar to B_10 bar B_10 using
14// helicity amplitude.
15//
16// Modification history:
17//
18// Ping R.-G. Apr., 2007 Module created
19//
20//------------------------------------------------------------------------
21
22#ifndef EVTPBB2_HH
23#define EVTPBB2_HH
24
26
27class EvtParticle;
28
29class EvtPBB2 : public EvtDecayAmp {
30
31public:
33 virtual ~EvtPBB2();
34
35 void getName( std::string& name );
37
38 void decay( EvtParticle* p );
39 void init();
40 void init( int, double* );
41 void initProbMax();
42
43 double alpha;
44 double u;
45};
46
47#endif
double alpha
Definition EvtPBB2.hh:43
void getName(std::string &name)
Definition EvtPBB2.cc:43
EvtPBB2()
Definition EvtPBB2.hh:32
void initProbMax()
Definition EvtPBB2.cc:54
double u
Definition EvtPBB2.hh:44
virtual ~EvtPBB2()
Definition EvtPBB2.cc:41
void decay(EvtParticle *p)
Definition EvtPBB2.cc:62
EvtDecayBase * clone()
Definition EvtPBB2.cc:45
void init(int, double *)
void init()
Definition EvtPBB2.cc:47