Line data Source code
1 : //--------------------------------------------------------------------------
2 : //
3 : // Environment:
4 : // This software is part of the EvtGen package developed jointly
5 : // for the BaBar and CLEO collaborations. If you use all or part
6 : // of it, please give an appropriate acknowledgement.
7 : //
8 : // Copyright Information: See EvtGen/COPYRIGHT
9 : // Copyright (C) 1999 Caltech, UCSB
10 : //
11 : // Module: EvtGen/EvtSVSCPLH.hh
12 : //
13 : // Description:
14 : //
15 : // Modification history:
16 : //
17 : // Ryd March 29, 2001 Module created
18 : //
19 : //------------------------------------------------------------------------
20 :
21 : #ifndef EVTSVSCPLH_HH
22 : #define EVTSVSCPLH_HH
23 :
24 : #include "EvtGenBase/EvtDecayAmp.hh"
25 : #include "EvtGenBase/EvtComplex.hh"
26 :
27 : class EvtParticle;
28 :
29 : class EvtSVSCPLH:public EvtDecayAmp {
30 :
31 : public:
32 :
33 0 : EvtSVSCPLH() {}
34 : virtual ~EvtSVSCPLH();
35 :
36 : std::string getName();
37 : EvtDecayBase* clone();
38 :
39 : void initProbMax();
40 : void init();
41 :
42 : void decay(EvtParticle *p);
43 :
44 :
45 : private:
46 :
47 : EvtComplex _Af,_Abarf;
48 : EvtComplex _qop,_poq;
49 :
50 : double _dm;
51 : double _dgamma;
52 :
53 :
54 :
55 :
56 : };
57 :
58 : #endif
59 :
60 :
61 :
62 :
|