Belle II Software light-2406-ragdoll
SignalSideParticleListCreatorModule.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 <framework/core/Module.h>
12
13#include <analysis/DecayDescriptor/DecayDescriptor.h>
14
15namespace Belle2 {
42
43 public:
44
49
51 virtual void initialize() override;
52
54 virtual void event() override;
55
56
57 private:
58
59 std::string m_particleListName;
60 std::string
62 std::string m_decayString;
64 int m_pdgCode = 0;
70 0;
72 };
74}
75
The DecayDescriptor stores information about a decay tree or parts of a decay tree.
Base class for Modules.
Definition: Module.h:72
The module creates a ParticleList and fills it with one of the daughter Particles.
bool m_isSelfConjugatedParticle
flag that indicates whether an anti-particle does not exist and therefore the output anti-ParticleLis...
SignalSideParticleListCreatorModule()
Constructor: Sets the description, the properties and the parameters of the module.
std::string m_particleListName
Name of the ParticleList to be created and filled with signal side daughter Particle.
std::string m_antiParticleListName
Name of the anti-ParticleList to be created and filled with signal side daughter Particle.
DecayDescriptor m_pListDDescriptor
Decay descriptor of the particle list being selected.
std::string m_decayString
DecayString specifying the daughter Particle to be included in the ParticleList.
DecayDescriptor m_pDDescriptor
Decay descriptor of the particle being selected.
Abstract base class for different kinds of events.
Definition: ClusterUtils.h:24