Belle II Software light-2505-deimos
DuplicateVertexMarkerModule.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#include <framework/core/Module.h>
11
12#include <analysis/dataobjects/ParticleList.h>
13#include <framework/datastore/StoreObjPtr.h>
14#include <string>
15
16namespace Belle2 {
21
32
33 public:
34
39
44 virtual void initialize() override;
45
49 virtual void event() override;
50
51 private:
52
54 std::string m_particleList;
55 std::string m_extraInfoName;
57 };
58
60} // Belle2 namespace
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
StoreObjPtr< ParticleList > m_inPList
input particle list
bool m_prioritiseV0
if one of the decay is a V0, prioritise that before checking vertex quality
std::string m_particleList
input ParticleList name
std::string m_extraInfoName
output extra-info name
Module()
Constructor.
Definition Module.cc:30
Type-safe access to single objects in the data store.
Definition StoreObjPtr.h:96
Abstract base class for different kinds of events.