Belle II Software light-2406-ragdoll
PseudoVertexFitterModule.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
13namespace Belle2 {
19 class Particle;
20
28
29 public:
30
35
40 virtual void initialize() override;
41
45 virtual void event() override;
46
47 private:
48
49 std::string m_listName;
50 std::string m_decayString;
57 bool add_matrix(Particle* p);
58 };
60} // Belle2 namespace
61
Base class for Modules.
Definition: Module.h:72
Class to store reconstructed particles.
Definition: Particle.h:75
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
std::string m_decayString
daughter particles selection
std::string m_listName
particle list name
bool add_matrix(Particle *p)
Main steering routine.
Abstract base class for different kinds of events.
Definition: ClusterUtils.h:24