Belle II Software  release-08-01-10
EvtBGL2.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 
11 #include "EvtGenBase/EvtDecayAmp.hh"
12 #include "EvtGenBase/EvtSemiLeptonicFF.hh"
13 #include "EvtGenBase/EvtSemiLeptonicAmp.hh"
14 
15 class EvtParticle;
16 
19 class EvtBGL2: public EvtDecayAmp {
20 
21 public:
22 
24  EvtBGL2();
25 
27  virtual ~EvtBGL2();
28 
30  std::string getName();
31 
33  EvtDecayBase* clone();
34 
36  void decay(EvtParticle* p);
37 
39  void initProbMax();
40 
42  void init();
43 
44 private:
45 
47  EvtSemiLeptonicFF* m_bgl2ffmodel = nullptr;
48  // EvtSemiLeptonicFF* bglffmodel;
49 
51  EvtSemiLeptonicAmp* m_calcamp = nullptr;
52  // EvtSemiLeptonicAmp* calcamp;
53 
54 };
The class provides the form factors for orbitally excited semileptonic decays.
Definition: EvtBGL2.h:19
void init()
Initializes module.
Definition: EvtBGL2.cc:97
virtual ~EvtBGL2()
virtual destructor
Definition: EvtBGL2.cc:29
EvtSemiLeptonicFF * m_bgl2ffmodel
Pointers needed for form factors.
Definition: EvtBGL2.h:47
EvtDecayBase * clone()
Clones module.
Definition: EvtBGL2.cc:46
EvtSemiLeptonicAmp * m_calcamp
Pointers needed to calculate amplitude.
Definition: EvtBGL2.h:51
void initProbMax()
Sets maximal probab.
Definition: EvtBGL2.cc:62
std::string getName()
Returns name of module.
Definition: EvtBGL2.cc:37
EvtBGL2()
Default constructor.
Definition: EvtBGL2.cc:24
void decay(EvtParticle *p)
Creates a decay.
Definition: EvtBGL2.cc:54