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.
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 
25 #include "EvtGenBase/EvtCyclic3.hh"
28 
29 #include <string>
30 
31 class EvtComplex;
32 
33 class 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 _m0;
51  double _g0;
52  double _q0;
53  double _r;
54  double _a;
55  double _cutoff;
56  std::string _subtype;
57 };
58 
59 #endif
double _g0
Definition: EvtLASSAmp.hh:51
double _cutoff
Definition: EvtLASSAmp.hh:55
EvtComplex amplitude(const EvtDalitzPoint &p) const override
Definition: EvtLASSAmp.cpp:56
EvtAmplitude< EvtDalitzPoint > * clone() const override
Definition: EvtLASSAmp.hh:40
EvtDalitzPlot * _dalitzSpace
Definition: EvtLASSAmp.hh:46
double _a
Definition: EvtLASSAmp.hh:54
double _q0
Definition: EvtLASSAmp.hh:52
double _r
Definition: EvtLASSAmp.hh:53
EvtCyclic3::Pair _pair
Definition: EvtLASSAmp.hh:48
std::string _subtype
Definition: EvtLASSAmp.hh:56
EvtLASSAmp(EvtDalitzPlot *dp, EvtCyclic3::Pair pair, double m0, double g0, double a, double r, double cutoff, std::string subtype="LASS")
Definition: EvtLASSAmp.cpp:35
double _m0
Definition: EvtLASSAmp.hh:50