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.
EvtHQET2FF.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 EVTHQET2FF_HH
22 #define EVTHQET2FF_HH
23 
25 
26 class EvtId;
27 
28 class EvtHQET2FF : public EvtSemiLeptonicFF {
29  public:
30  EvtHQET2FF( double hqetrho2, double hqetha1_1, double hqetr1_1,
31  double hqetr2_1 );
32  EvtHQET2FF( double hqetrho2, double hqetv1_1 );
33  EvtHQET2FF( double hqetrho2, double hqetha1_1, double hqetr1_1,
34  double hqetr2_1, double hqetr0_1 );
35  EvtHQET2FF( double hqetrho2, double hqetv1_1, double indelta );
36  void getvectorff( EvtId parent, EvtId daught, double t, double mass,
37  double* a1f, double* a2f, double* vf,
38  double* a0f ) override;
39 
40  void getscalarff( EvtId parent, EvtId daught, double t, double mass,
41  double* f0p, double* f0m ) override;
42 
43  void gettensorff( EvtId, EvtId, double, double, double*, double*, double*,
44  double* ) override;
45 
46  void getbaryonff( EvtId, EvtId, double, double, double*, double*, double*,
47  double* ) override;
48 
49  void getdiracff( EvtId, EvtId, double, double, double*, double*, double*,
50  double*, double*, double* ) override;
51 
52  void getraritaff( EvtId, EvtId, double, double, double*, double*, double*,
53  double*, double*, double*, double*, double* ) override;
54 
55  private:
56  double r1_1;
57  double rho2;
58  double r2_1;
59  double ha1_1;
60  double v1_1;
61  double r0_1;
62  double delta;
63  bool extended;
64 };
65 
66 #endif
double r2_1
Definition: EvtHQET2FF.hh:58
double ha1_1
Definition: EvtHQET2FF.hh:59
double v1_1
Definition: EvtHQET2FF.hh:60
void gettensorff(EvtId, EvtId, double, double, double *, double *, double *, double *) override
Definition: EvtHQET2FF.cpp:136
void getraritaff(EvtId, EvtId, double, double, double *, double *, double *, double *, double *, double *, double *, double *) override
Definition: EvtHQET2FF.cpp:160
Definition: EvtId.hh:27
double r1_1
Definition: EvtHQET2FF.hh:56
void getscalarff(EvtId parent, EvtId daught, double t, double mass, double *f0p, double *f0m) override
Definition: EvtHQET2FF.cpp:68
void getbaryonff(EvtId, EvtId, double, double, double *, double *, double *, double *) override
Definition: EvtHQET2FF.cpp:144
void getdiracff(EvtId, EvtId, double, double, double *, double *, double *, double *, double *, double *) override
Definition: EvtHQET2FF.cpp:152
double rho2
Definition: EvtHQET2FF.hh:57
void getvectorff(EvtId parent, EvtId daught, double t, double mass, double *a1f, double *a2f, double *vf, double *a0f) override
Definition: EvtHQET2FF.cpp:101
bool extended
Definition: EvtHQET2FF.hh:63
double delta
Definition: EvtHQET2FF.hh:62
EvtHQET2FF(double hqetrho2, double hqetha1_1, double hqetr1_1, double hqetr2_1)
Definition: EvtHQET2FF.cpp:32
double r0_1
Definition: EvtHQET2FF.hh:61