]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenModels/EvtSSDCP.hh
An effective FD corretion
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtSSDCP.hh
CommitLineData
da0e9ce3 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
26#include "EvtGenBase/EvtDecayAmp.hh"
27
28class EvtParticle;
29
30class EvtSSDCP:public EvtDecayAmp {
31
32public:
33
34 EvtSSDCP() {}
35 virtual ~EvtSSDCP();
36
37 std::string getName();
38 EvtDecayBase* clone();
39
40 void initProbMax();
41 void init();
42 void decay(EvtParticle *p);
43
44private:
45
46 //Arguments
47
48 double _dm;
49
50 double _dgog;
51
52 EvtComplex _qoverp;
53 EvtComplex _poverq;
54 EvtComplex _z; //FS CPTV parameter
55
56 // FS commented next line becuse not used
57 // int _cp;
58
59 EvtComplex _A_f;
60 EvtComplex _Abar_f;
61
62 EvtComplex _A_fbar;
63 EvtComplex _Abar_fbar;
64
65 //Derived quantities
66
67 double _gamma;
68 double _dgamma;
69
70 bool _eigenstate;
71
72};
73
74#endif