BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtJ2BB3.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: EvtJ2BB3.cc
12//
13// Description: Routine to decay J/psi-> B_8 bar B_10 with using the
14// GVDM approach.(see J.-G. Korner Z.Physik C-Particles
15// and Fields 33,529-535(1987))
16//
17
18// Modification history:
19//
20// Pang C.-Y., Ping R.-G. Mar, 2007 Module created
21//
22//------------------------------------------------------------------------
23
24#ifndef EVTJ2BB3_HH
25#define EVTJ2BB3_HH
26
28
29class EvtParticle;
30
31class EvtJ2BB3 : public EvtDecayAmp {
32
33public:
35 virtual ~EvtJ2BB3();
36
37 void getName( std::string& name );
39
40 void decay( EvtParticle* p );
41 void init();
42 void init( int, double* );
43 // void initProbMax();
44
45 double alpha;
46 double u;
47};
48
49#endif
EvtDecayBase * clone()
Definition EvtJ2BB3.cc:46
double u
Definition EvtJ2BB3.hh:46
void decay(EvtParticle *p)
Definition EvtJ2BB3.cc:65
virtual ~EvtJ2BB3()
Definition EvtJ2BB3.cc:42
void init()
Definition EvtJ2BB3.cc:48
void getName(std::string &name)
Definition EvtJ2BB3.cc:44
double alpha
Definition EvtJ2BB3.hh:45
void init(int, double *)