evtgen is hosted by Hepforge, IPPP Durham
EvtGen  2.0.0
Monte Carlo generator of particle decays, in particular the weak decays of heavy flavour particles such as B mesons.
EvtSSDCP.hh
Go to the documentation of this file.
1 
2 /***********************************************************************
3 * Copyright 1998-2020 CERN for the benefit of the EvtGen authors *
4 * *
5 * This file is part of EvtGen. *
6 * *
7 * EvtGen is free software: you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation, either version 3 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * EvtGen is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with EvtGen. If not, see <https://www.gnu.org/licenses/>. *
19 ***********************************************************************/
20 
21 #ifndef EVTSSDCP_HH
22 #define EVTSSDCP_HH
23 
25 
26 class EvtParticle;
27 
28 // Description: This module is part of the unification of simulation of CP violation in
29 // B decays. This model handles decays of the type B->SD where D is either
30 // a spin 0, 1, or 2 particle. See long writeup for more information.
31 
32 class EvtSSDCP : public EvtDecayAmp {
33  public:
34  std::string getName() override;
35  EvtDecayBase* clone() override;
36 
37  void initProbMax() override;
38  void init() override;
39  void decay( EvtParticle* p ) override;
40 
41  std::string getParamName( int i ) override;
42  std::string getParamDefault( int i ) override;
43 
44  private:
45  //Arguments
46 
47  double _dm;
48 
49  double _dgog;
50 
53  EvtComplex _z; //FS CPTV parameter
54 
55  // FS commented next line becuse not used
56  // int _cp;
57 
60 
63 
64  //Derived quantities
65 
66  double _gamma;
67  double _dgamma;
68 
70 };
71 
72 #endif
EvtDecayBase * clone() override
Definition: EvtSSDCP.cpp:44
EvtComplex _Abar_fbar
Definition: EvtSSDCP.hh:62
EvtComplex _A_fbar
Definition: EvtSSDCP.hh:61
double _dm
Definition: EvtSSDCP.hh:47
EvtComplex _z
Definition: EvtSSDCP.hh:53
double _gamma
Definition: EvtSSDCP.hh:66
bool _eigenstate
Definition: EvtSSDCP.hh:69
EvtComplex _poverq
Definition: EvtSSDCP.hh:52
void decay(EvtParticle *p) override
Definition: EvtSSDCP.cpp:179
std::string getParamName(int i) override
Definition: EvtSSDCP.cpp:314
EvtComplex _Abar_f
Definition: EvtSSDCP.hh:59
double _dgog
Definition: EvtSSDCP.hh:49
void initProbMax() override
Definition: EvtSSDCP.cpp:161
EvtComplex _qoverp
Definition: EvtSSDCP.hh:51
EvtComplex _A_f
Definition: EvtSSDCP.hh:58
std::string getName() override
Definition: EvtSSDCP.cpp:39
void init() override
Definition: EvtSSDCP.cpp:49
double _dgamma
Definition: EvtSSDCP.hh:67
std::string getParamDefault(int i) override
Definition: EvtSSDCP.cpp:350