Belle II Software  release-05-01-25
V0DaughterMassUpdaterModule.h
1 /**************************************************************************
2 * BASF2 (Belle Analysis Framework 2) *
3 * Copyright(C) 2018 - Belle II Collaboration *
4 * *
5 * Author: The Belle II Collaboration *
6 * Contributors: Yefan Tao ustctao@ufl.edu *
7 * *
8 * This software is provided "as is" without any warranty. *
9 **************************************************************************/
10 
11 #pragma once
12 #include <framework/core/Module.h>
13 
14 namespace Belle2 {
25  class V0DaughterMassUpdaterModule : public Module {
26  private:
27  int m_pdg_pos_dau;
28  int m_pdg_neg_dau;
31  std::vector<std::string> m_strParticleLists;
32 
33  public:
36 
38  virtual void event() override;
39  };
41 } // end namespace Belle2
42 
43 
Belle2::V0DaughterMassUpdaterModule::event
virtual void event() override
Method called for each event.
Definition: V0DaughterMassUpdaterModule.cc:35
Belle2::V0DaughterMassUpdaterModule::m_pdg_neg_dau
int m_pdg_neg_dau
PDG code for V0's negative daughter.
Definition: V0DaughterMassUpdaterModule.h:36
Belle2::V0DaughterMassUpdaterModule::V0DaughterMassUpdaterModule
V0DaughterMassUpdaterModule()
Constructor.
Definition: V0DaughterMassUpdaterModule.cc:22
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::V0DaughterMassUpdaterModule::m_strParticleLists
std::vector< std::string > m_strParticleLists
Name of the lists.
Definition: V0DaughterMassUpdaterModule.h:39
Belle2::V0DaughterMassUpdaterModule::m_pdg_pos_dau
int m_pdg_pos_dau
PDG code for V0's positive daughter.
Definition: V0DaughterMassUpdaterModule.h:35