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
EvtLASSAmp.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 EVT_LASS_AMP_HH
22#define EVT_LASS_AMP_HH
23
28
29#include <string>
30
31class EvtComplex;
32
33class EvtLASSAmp : public EvtAmplitude<EvtDalitzPoint> {
34 public:
35 EvtLASSAmp( EvtDalitzPlot* dp, EvtCyclic3::Pair pair, double m0, double g0,
36 double a, double r, double cutoff, std::string subtype = "LASS" );
37
38 EvtComplex amplitude( const EvtDalitzPoint& p ) const override;
39
41 {
42 return new EvtLASSAmp( *this );
43 }
44
45 private:
47
49
50 double m_m0;
51 double m_g0;
52 double m_q0;
53 double m_r;
54 double m_a;
55 double m_cutoff;
56 std::string m_subtype;
57};
58
59#endif
std::string m_subtype
Definition EvtLASSAmp.hh:56
EvtComplex amplitude(const EvtDalitzPoint &p) const override
EvtLASSAmp(EvtDalitzPlot *dp, EvtCyclic3::Pair pair, double m0, double g0, double a, double r, double cutoff, std::string subtype="LASS")
EvtDalitzPlot * m_dalitzSpace
Definition EvtLASSAmp.hh:46
double m_g0
Definition EvtLASSAmp.hh:51
double m_m0
Definition EvtLASSAmp.hh:50
double m_q0
Definition EvtLASSAmp.hh:52
double m_r
Definition EvtLASSAmp.hh:53
double m_cutoff
Definition EvtLASSAmp.hh:55
EvtCyclic3::Pair m_pair
Definition EvtLASSAmp.hh:48
double m_a
Definition EvtLASSAmp.hh:54
EvtAmplitude< EvtDalitzPoint > * clone() const override
Definition EvtLASSAmp.hh:40