Belle II Software prerelease-10-00-00a
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 {
23
30
35 private:
44
45 public:
48
51 virtual void initialize() override;
53 virtual void event() override;
54 };
55
56} // end namespace Belle2
57
58
Module()
Constructor.
Definition Module.cc:30
Type-safe access to single objects in the data store.
Definition StoreObjPtr.h:96
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.