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.
Evtbs2llGammaAmp.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 EVTBSTOLLGAMMA_AMP_HH
22 #define EVTBSTOLLGAMMA_AMP_HH
23 
24 class EvtId;
25 class EvtAmp;
26 class EvtParticle;
27 class Evtbs2llGammaFF;
29 
30 // Description: Preparation of the decay amplitude for the process:
31 // B^0_{q}(p,M1) -> gamma(k) ell^+(p1,m) ell^-(p2,m).
32 //
33 // Note: The code of this module is based on the EvtbTosllVectorAmp.cpp
34 // module code.
35 // The main functiom for the amplitude calculation retuns the
36 // amplitude for the decay B -> gamma ell^+ ell^-
37 // In our calculations we assume, that photon is the first
38 // daughter particle (iG=0) and leptons are the second and thirds
39 // daughter particles (il1=1 and il2=2).
40 
42  public:
43  void CalcAmp( EvtParticle* parent, EvtAmp& amp, Evtbs2llGammaFF* formFactors,
44  EvtbTosllWilsCoeffNLO* WilsCoeff, double mu, int Nf,
45  int res_swch, int ias, double Egamma_min, double CKM_A,
46  double CKM_lambda, double CKM_barrho, double CKM_bareta );
47 
48  double CalcMaxProb( EvtId parnum, EvtId photnum, EvtId l1num, EvtId l2num,
49  Evtbs2llGammaFF* formFactors,
50  EvtbTosllWilsCoeffNLO* WilsCoeff, double mu, int Nf,
51  int res_swch, int ias, double Egamma_min, double CKM_A,
52  double CKM_lambda, double CKM_barrho, double CKM_bareta );
53 
54  double lambda( double a, double b, double c );
55 };
56 
57 #endif
void CalcAmp(EvtParticle *parent, EvtAmp &amp, Evtbs2llGammaFF *formFactors, EvtbTosllWilsCoeffNLO *WilsCoeff, double mu, int Nf, int res_swch, int ias, double Egamma_min, double CKM_A, double CKM_lambda, double CKM_barrho, double CKM_bareta)
double lambda(double a, double b, double c)
double CalcMaxProb(EvtId parnum, EvtId photnum, EvtId l1num, EvtId l2num, Evtbs2llGammaFF *formFactors, EvtbTosllWilsCoeffNLO *WilsCoeff, double mu, int Nf, int res_swch, int ias, double Egamma_min, double CKM_A, double CKM_lambda, double CKM_barrho, double CKM_bareta)
Definition: EvtId.hh:27
Definition: EvtAmp.hh:30