Belle II Software development
RelatedTracksCombinerModule.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/core/Module.h>
11
12#include <framework/datastore/StoreArray.h>
13#include <tracking/dataobjects/RecoTrack.h>
14
20namespace Belle2 {
27
28 public:
31
33 void initialize() override;
34
36 void event() override;
37
38 private:
45
52 };
54}
55
Base class for Modules.
Definition: Module.h:72
void initialize() override
Declare required StoreArray.
void event() override
Event processing, combine store array.
StoreArray< RecoTrack > m_vxdRecoTracks
Store Array of the input tracks.
RelatedTracksCombinerModule()
Constructor of the module. Setting up parameters and description.
std::string m_cdcRecoTracksStoreArrayName
Name of the input CDC StoreArray.
StoreArray< RecoTrack > m_recoTracks
Store Array of the output tracks.
StoreArray< RecoTrack > m_cdcRecoTracks
Store Array of the input tracks.
std::string m_recoTracksStoreArrayName
Name of the output StoreArray.
std::string m_vxdRecoTracksStoreArrayName
Name of the input VXD StoreArray.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.