Belle II Software  light-2403-persian
TwoBodyISRPhotonCorrectorModule.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 <framework/datastore/StoreObjPtr.h>
13 
14 #include <analysis/dataobjects/ParticleList.h>
15 
16 #include <string>
17 
18 namespace Belle2 {
35  private:
39  std::string m_inputGammaListName;
41  std::string m_outputGammaListName;
44 
45  public:
48 
51  virtual void initialize() override;
53  virtual void event() override;
54  };
56 } // end namespace Belle2
57 
58 
Base class for Modules.
Definition: Module.h:72
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
This module corrects the energy and momentum of high-energy ISR photons in single ISR events based on...
virtual void initialize() override
Initialises the module.
virtual void event() override
Method called for each event.
std::string m_inputGammaListName
name of input particle list.
StoreObjPtr< ParticleList > m_outputGammaList
output particleList
std::string m_outputGammaListName
name of output particle list.
Int_t m_massiveParticlePDGCode
PDG code of particle constraining the gamma energy.
Abstract base class for different kinds of events.
Definition: ClusterUtils.h:24