Belle II Software development
TauPairDecay.cc
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#include <analysis/dataobjects/TauPairDecay.h>
10
11using namespace Belle2;
12
14{
15 m_pmode = pmode;
16}
17
19{
20 m_mmode = mmode;
21}
22
24{
25 m_pprong = pprong;
26}
27
29{
30 m_mprong = mprong;
31}
32
34{
35 m_megstar = megstar;
36}
37
39{
40 m_pegstar = pegstar;
41}
int m_mprong
Prong of negative tau lepton decay.
Definition: TauPairDecay.h:144
void addTauPlusEgstar(double pegstar)
Add energy of radiated photon from positive tau decay [in tau+ rest frame].
Definition: TauPairDecay.cc:38
void addTauPlusIdMode(int pmode)
Add ID of positive tau decay.
Definition: TauPairDecay.cc:13
int m_pprong
Prong of positive tau lepton decay.
Definition: TauPairDecay.h:143
double m_pegstar
Energy of photon from positive tau decay.
Definition: TauPairDecay.h:146
void addTauMinusIdMode(int mmode)
Add ID of negative tau decay.
Definition: TauPairDecay.cc:18
void addTauMinusEgstar(double megstar)
Add energy of radiated photon from negative tau decay [in tau- rest frame].
Definition: TauPairDecay.cc:33
int m_pmode
Decay ID of positive tau lepton decay.
Definition: TauPairDecay.h:141
int m_mmode
Decay ID of negative tau lepton decay.
Definition: TauPairDecay.h:142
double m_megstar
Energy of photon from negative tau decay.
Definition: TauPairDecay.h:145
void addTauPlusMcProng(int pprong)
Add prong of positive tau decay.
Definition: TauPairDecay.cc:23
void addTauMinusMcProng(int mprong)
Add prong of negative tau decay.
Definition: TauPairDecay.cc:28
Abstract base class for different kinds of events.