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.
EvtLb2Lll.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 EVTLB2LLL_HH
22 #define EVTLB2LLL_HH
23 
27 
29 
30 // Desription: Routine to implement Lambda_b0 -> Lambda_0 l+ l- decays accroding to
31 // several models: Chen. Geng.
32 // Aliev. Ozpineci. Savci.
33 
34 class EvtLb2Lll : public EvtDecayAmp {
35  public:
36  std::string getName() override;
37  EvtDecayBase* clone() override;
38 
39  void decay( EvtParticle* p ) override;
40  void init() override;
41  void initProbMax() override;
42  void calcAmp( EvtAmp* amp, EvtParticle* parent );
43 
45  const EvtDiracSpinor& dp );
46 
47  private:
50  double m_poleSize;
51  long m_noTries;
52  double m_omega;
53 
54  std::string m_decayName;
56  std::string m_HEPmodel;
57  std::string m_FFtype;
58  std::string m_effectContribution;
59 
61 };
62 
63 #endif
long m_noTries
Definition: EvtLb2Lll.hh:51
std::string m_HEPmodel
Definition: EvtLb2Lll.hh:56
EvtDecayBase * clone() override
Definition: EvtLb2Lll.cpp:36
std::string m_polarizationIntroduction
Definition: EvtLb2Lll.hh:55
EvtWilsonCoefficients m_WC
Definition: EvtLb2Lll.hh:60
void decay(EvtParticle *p) override
Definition: EvtLb2Lll.cpp:377
double m_poleSize
Definition: EvtLb2Lll.hh:50
std::string m_decayName
Definition: EvtLb2Lll.hh:54
std::string m_FFtype
Definition: EvtLb2Lll.hh:57
std::string getName() override
Definition: EvtLb2Lll.cpp:41
double m_maxProbability
Definition: EvtLb2Lll.hh:49
void init() override
Definition: EvtLb2Lll.cpp:46
void calcAmp(EvtAmp *amp, EvtParticle *parent)
Definition: EvtLb2Lll.cpp:384
Definition: EvtAmp.hh:30
EvtTensor4C EvtLeptonTG5Current(const EvtDiracSpinor &d, const EvtDiracSpinor &dp)
Definition: EvtLb2Lll.cpp:850
double m_omega
Definition: EvtLb2Lll.hh:52
std::string m_effectContribution
Definition: EvtLb2Lll.hh:58
double m_polarizationLambdab0
Definition: EvtLb2Lll.hh:48
void initProbMax() override
Definition: EvtLb2Lll.cpp:282