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
59
60 };
61
63} // 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.