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