Belle II Software development
ARICHRelateModule.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
12#include <framework/core/Module.h>
13
14namespace Belle2 {
19 class Track;
20 class ExtHit;
21 class MCParticle;
22 class ARICHAeroHit;
23
27 class ARICHRelateModule : public Module {
28
29 public:
30
35
39 virtual ~ARICHRelateModule() {};
40
45 virtual void initialize() override;
46
50 virtual void event() override;
51
52 private:
53
54 // required input
60 };
61
63} // Belle2 namespace
Creates relations between ARICHAeroHits and ExtHits.
StoreArray< ARICHAeroHit > m_aeroHits
Required array of input ARICHAeroHits.
StoreArray< Track > m_mdstTracks
Required array of input Tracks.
virtual ~ARICHRelateModule()
Destructor.
StoreArray< ExtHit > m_extHits
Required array of input ExtHits.
StoreArray< MCParticle > m_mcParticles
Required array of input MCParticles.
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.
Abstract base class for different kinds of events.