Belle II Software development
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
13namespace Belle2 {
18 class Track;
19 class ExtHit;
20 class MCParticle;
21
26
27 public:
28
33
38
43 virtual void initialize() override;
44
48 virtual void event() override;
49
50 private:
51
52 // required input
57 };
58
60} // 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.