Belle II Software prerelease-10-00-00a
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
30 class ARICHRelateModule : public Module {
31
32 public:
33
38
42 virtual ~ARICHRelateModule() {};
43
48 virtual void initialize() override;
49
53 virtual void event() override;
54
55 private:
56
57 // required input
62
63 };
64
66} // Belle2 namespace
Datastore class that holds information on track parameters at the entrance in aerogel.
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.
Store one Ext hit as a ROOT object.
Definition ExtHit.h:31
A Class to store the Monte Carlo particle information.
Definition MCParticle.h:32
Module()
Constructor.
Definition Module.cc:30
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Class that bundles various TrackFitResults.
Definition Track.h:25
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
Abstract base class for different kinds of events.