Belle II Software development
V0DaughterMassUpdaterModule.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
12namespace Belle2 {
21 private:
26 std::vector<std::string> m_strParticleLists;
27
28 public:
31
33 virtual void event() override;
34 };
36} // end namespace Belle2
37
38
Base class for Modules.
Definition: Module.h:72
This module replaces the mass of two daughters of the selected V0 particles inside the given particle...
int m_pdg_pos_dau
PDG code for V0's positive daughter.
virtual void event() override
Method called for each event.
std::vector< std::string > m_strParticleLists
Name of the lists.
int m_pdg_neg_dau
PDG code for V0's negative daughter.
Abstract base class for different kinds of events.