Belle II Software  release-05-02-19
EventT0ShifterModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2017 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Thomas Kuhr *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <framework/core/Module.h>
14 #include <framework/datastore/StoreArray.h>
15 #include <framework/datastore/StoreObjPtr.h>
16 #include <mdst/dataobjects/MCParticle.h>
17 #include <framework/dataobjects/MCInitialParticles.h>
18 
19 
20 namespace Belle2 {
33  class EventT0ShifterModule : public Module {
34 
35  public:
36 
41 
45  virtual void initialize() override;
46 
50  virtual void event() override;
51 
52  private:
53 
57  };
58 
60 } // Belle2 namespace
61 
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::StoreObjPtr
Type-safe access to single objects in the data store.
Definition: ParticleList.h:33
Belle2::EventT0ShifterModule::EventT0ShifterModule
EventT0ShifterModule()
Constructor.
Definition: EventT0ShifterModule.cc:20
Belle2::EventT0ShifterModule::event
virtual void event() override
Event processor.
Definition: EventT0ShifterModule.cc:38
Belle2::EventT0ShifterModule::m_mcParticles
StoreArray< MCParticle > m_mcParticles
MC particles.
Definition: EventT0ShifterModule.h:62
Belle2::EventT0ShifterModule::initialize
virtual void initialize() override
Initialize the Module.
Definition: EventT0ShifterModule.cc:31
Belle2::StoreArray< MCParticle >
Belle2::EventT0ShifterModule::m_initialParticles
StoreObjPtr< MCInitialParticles > m_initialParticles
beam particles
Definition: EventT0ShifterModule.h:63