Belle II Software  release-08-01-10
EvtBGL.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 EvtBGL: public EvtDecayAmp {
20 
21 public:
22 
24  EvtBGL();
25 
27  virtual ~EvtBGL();
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* bglffmodel;
48 
50  EvtSemiLeptonicAmp* calcamp;
51 
52 };
53 
54 
55 
The class provides the form factors for orbitally excited semileptonic decays.
Definition: EvtBGL.h:19
EvtSemiLeptonicAmp * calcamp
Pointers needed to calculate amplitude.
Definition: EvtBGL.h:50
void init()
Initializes module.
Definition: EvtBGL.cc:99
EvtBGL()
Default constructor.
Definition: EvtBGL.cc:26
EvtDecayBase * clone()
Clones module.
Definition: EvtBGL.cc:48
void initProbMax()
Sets maximal probab.
Definition: EvtBGL.cc:64
virtual ~EvtBGL()
virtual destructor
Definition: EvtBGL.cc:31
std::string getName()
Returns name of module.
Definition: EvtBGL.cc:39
EvtSemiLeptonicFF * bglffmodel
Pointers needed for FFs.
Definition: EvtBGL.h:47
void decay(EvtParticle *p)
Creates a decay.
Definition: EvtBGL.cc:56