Belle II Software development
EvtLLSW.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
15class EvtParticle;
16
19class EvtLLSW: public EvtDecayAmp {
20
21public:
22
24 EvtLLSW();
25
27 virtual ~EvtLLSW();
28
30 std::string getName();
31
33 EvtDecayBase* clone();
34
36 void decay(EvtParticle* p);
37
39 void initProbMax();
40
42 void init();
43
44private:
45
47 EvtSemiLeptonicFF* llswffmodel;
48
50 EvtSemiLeptonicAmp* calcamp;
51
52};
53
54
The class provides the decay amplitude for orbitally excited semileptonic decays.
Definition: EvtLLSW.h:19
EvtSemiLeptonicAmp * calcamp
Pointers needed to calculate amplitude.
Definition: EvtLLSW.h:50
void init()
Initializes module.
Definition: EvtLLSW.cc:91
virtual ~EvtLLSW()
virtual destructor
Definition: EvtLLSW.cc:28
EvtLLSW()
Default constructor.
Definition: EvtLLSW.cc:22
EvtDecayBase * clone()
Clones module.
Definition: EvtLLSW.cc:45
EvtSemiLeptonicFF * llswffmodel
Pointers needed for FFs.
Definition: EvtLLSW.h:47
void initProbMax()
Sets maximal probab.
Definition: EvtLLSW.cc:61
std::string getName()
Returns name of module.
Definition: EvtLLSW.cc:36
void decay(EvtParticle *p)
Creates a decay.
Definition: EvtLLSW.cc:52