Belle II Software  release-08-01-10
EvtKnunu.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/EvtParticle.hh"
12 #include "EvtGenBase/EvtDecayAmp.hh"
13 #include <string>
14 
15 class EvtParticle;
16 
17 namespace Belle2 {
26  class EvtKnunu : public EvtDecayAmp {
27 
28  public:
29 
33  EvtKnunu() {}
34 
38  virtual ~EvtKnunu();
39 
43  std::string getName();
44 
48  EvtDecayBase* clone();
49 
53  void init();
54 
58  void decay(EvtParticle* p);
59 
63  void initProbMax();
64 
65  };
66 
68 } // Belle 2 Namespace
The evtgen model to produce B-> K nu nubar decay sample.
Definition: EvtKnunu.h:26
EvtKnunu()
Constructor.
Definition: EvtKnunu.h:33
void init()
The function for an initialization.
Definition: EvtKnunu.cc:124
virtual ~EvtKnunu()
Destructor.
Definition: EvtKnunu.cc:38
EvtDecayBase * clone()
The function which makes a copy of the model.
Definition: EvtKnunu.cc:45
void initProbMax()
The function to sets a maximum probability.
Definition: EvtKnunu.cc:140
std::string getName()
The function which returns the name of the model.
Definition: EvtKnunu.cc:40
void decay(EvtParticle *p)
The function to calculate a quark decay amplitude.
Definition: EvtKnunu.cc:50
Abstract base class for different kinds of events.