Belle II Software development
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
18namespace Belle2 {
32 private:
41
42 public:
45
48 virtual void initialize() override;
50 virtual void event() override;
51 };
53} // end namespace Belle2
54
55
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.