BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtSSDCP.hh
Go to the documentation of this file.
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) 12001 Caltech
10//
11// Module: EvtGen/EvtSSDCP.hh
12//
13// Description: This module is part of the unification of simulation of CP violation in
14// B decays. This model handles decays of the type B->SD where D is either
15// a spin 0, 1, or 2 particle. See long writeup for more information.
16//
17// Modification history:
18//
19// DJL/RYD August 12, 2001 Module created
20//
21//------------------------------------------------------------------------
22
23#ifndef EVTSSDCP_HH
24#define EVTSSDCP_HH
25
27
28class EvtParticle;
29
30class EvtSSDCP : public EvtDecayAmp {
31
32public:
34 virtual ~EvtSSDCP();
35
36 void getName( std::string& name );
38
39 void initProbMax();
40 void init();
41 void decay( EvtParticle* p );
42
43private:
44 // Arguments
45
46 double _dm;
47
48 double _dgog;
49
50 EvtComplex _qoverp;
51 EvtComplex _poverq;
52 EvtComplex _z; // FS CPTV parameter
53
54 // FS commented next line becuse not used
55 // int _cp;
56
57 EvtComplex _A_f;
58 EvtComplex _Abar_f;
59
60 EvtComplex _A_fbar;
61 EvtComplex _Abar_fbar;
62
63 // Derived quantities
64
65 double _gamma;
66 double _dgamma;
67
68 bool _eigenstate;
69};
70
71#endif
EvtDecayBase * clone()
Definition EvtSSDCP.cc:41
void init()
Definition EvtSSDCP.cc:43
virtual ~EvtSSDCP()
Definition EvtSSDCP.cc:37
void getName(std::string &name)
Definition EvtSSDCP.cc:39
void initProbMax()
Definition EvtSSDCP.cc:150
void decay(EvtParticle *p)
Definition EvtSSDCP.cc:163