Belle II Software  release-08-01-10
ARICHMCParticlesModule.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 #pragma once
9 
10 #include <framework/datastore/StoreArray.h>
11 #include <framework/core/Module.h>
12 
13 namespace Belle2 {
18  class Track;
19  class ExtHit;
20  class MCParticle;
21 
28  class ARICHMCParticlesModule : public Module {
29 
30  public:
31 
36 
40  virtual ~ARICHMCParticlesModule();
41 
46  virtual void initialize() override;
47 
51  virtual void event() override;
52 
53  private:
54 
55  // required input
60  };
61 
63 } // Belle2 namespace
Module to match ARICH hits to MCParticles.
StoreArray< MCParticle > m_arichMCPs
Required input array of MCParticles.
StoreArray< Track > m_tracks
Required input array of Tracks.
StoreArray< ExtHit > m_extHits
Required input array of ExtHits.
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
virtual ~ARICHMCParticlesModule()
Destructor.
Abstract base class for different kinds of events.