Belle II Software  release-08-01-10
ParticleCopierModule.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 
11 #include <framework/core/Module.h>
12 
13 #include <string>
14 
15 namespace Belle2 {
21  // forward declaration
22  class Particle;
23 
36  class ParticleCopierModule : public Module {
37 
38  public:
39 
44 
49  virtual void initialize() override;
50 
54  virtual void event() override;
55 
56  private:
57 
58  std::vector<std::string> m_inputListNames;
59  };
60 
62 } // Belle2 namespace
63 
Base class for Modules.
Definition: Module.h:72
Module for creating copies of Particles.
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
std::vector< std::string > m_inputListNames
input ParticleList names
Abstract base class for different kinds of events.