EvtGen 2.2.0
Monte Carlo generator of particle decays, in particular the weak decays of heavy flavour particles such as B mesons.
Loading...
Searching...
No Matches
EvtBCLFF.hh
Go to the documentation of this file.
1
2/***********************************************************************
3* Copyright 1998-2021 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 EVTBCLFF_HH
22#define EVTBCLFF_HH
23
25
26#include <array>
27
32 public:
34 EvtBCLFF( int numarg, double* arglist );
35
48 void getscalarff( EvtId parent, EvtId daughter, double t, double,
49 double* fpf, double* f0f ) override;
50
69 void getvectorff( EvtId parent, EvtId daughter, double t, double, double* a1f,
70 double* a2f, double* vf, double* a0f ) override;
71
73 void gettensorff( EvtId parent, EvtId daughter, double t, double,
74 double* hf, double* kf, double* bp, double* bm ) override;
75
77 void getbaryonff( EvtId, EvtId, double, double, double*, double*, double*,
78 double* ) override;
79
81 void getdiracff( EvtId, EvtId, double, double, double*, double*, double*,
82 double*, double*, double* ) override;
83
85 void getraritaff( EvtId, EvtId, double, double, double*, double*, double*,
86 double*, double*, double*, double*, double* ) override;
87
88 private:
92 std::array<double, 19> m_BCLFFCoefficients;
93
95 static constexpr double m_resonance0Minus{ 5.279 }; // * Unit.GeV
97 static constexpr double m_resonance1Minus{ 5.325 }; // * Unit.GeV
99 static constexpr double m_resonance1Plus{ 5.724 }; // * Unit.GeV
100};
101
102#endif
void getbaryonff(EvtId, EvtId, double, double, double *, double *, double *, double *) override
Not Implemented.
Definition EvtBCLFF.cpp:178
std::array< double, 19 > m_BCLFFCoefficients
Parameters passed to the model; BCL expansion coefficients.
Definition EvtBCLFF.hh:92
int m_numBCLFFCoefficients
Total number of parameters passed to the model.
Definition EvtBCLFF.hh:90
void getdiracff(EvtId, EvtId, double, double, double *, double *, double *, double *, double *, double *) override
Not Implemented.
Definition EvtBCLFF.cpp:186
void getvectorff(EvtId parent, EvtId daughter, double t, double, double *a1f, double *a2f, double *vf, double *a0f) override
Definition EvtBCLFF.cpp:96
static constexpr double m_resonance1Minus
Mass of the 1- resonance for the parametrization of the vector FF.
Definition EvtBCLFF.hh:97
EvtBCLFF(int numarg, double *arglist)
Definition EvtBCLFF.cpp:31
void getscalarff(EvtId parent, EvtId daughter, double t, double, double *fpf, double *f0f) override
Definition EvtBCLFF.cpp:44
static constexpr double m_resonance0Minus
Mass of the 0- resonance for the parametrization of the vector FF.
Definition EvtBCLFF.hh:95
void gettensorff(EvtId parent, EvtId daughter, double t, double, double *hf, double *kf, double *bp, double *bm) override
Not Implemented.
Definition EvtBCLFF.cpp:170
void getraritaff(EvtId, EvtId, double, double, double *, double *, double *, double *, double *, double *, double *, double *) override
Not Implemented.
Definition EvtBCLFF.cpp:194
static constexpr double m_resonance1Plus
Mass of the 1+ resonance for the parametrization of the vector FF.
Definition EvtBCLFF.hh:99
Definition EvtId.hh:27