Belle II Software  release-08-01-10
MCRelationCreatorModule.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 <tracking/mcMatcher/TrackMatchLookUp.h>
13 #include <tracking/dataobjects/RecoTrack.h>
14 
15 #include <framework/datastore/StoreArray.h>
16 
17 #include <memory>
18 
22 namespace Belle2 {
28 
32 
33  public:
36 
38  void initialize() override;
39 
41  void event() override;
42 
43  private:
48 
53 
55  std::unique_ptr<TrackMatchLookUp> m_cdcTrackMatchLookUp;
57  std::unique_ptr<TrackMatchLookUp> m_vxdTrackMatchLookUp;
58  };
60 }
61 
Module to combine RecoTracks.
std::unique_ptr< TrackMatchLookUp > m_cdcTrackMatchLookUp
TrackMatchLookUp for the matching (CDC)
void initialize() override
Declare required StoreArray.
void event() override
Event processing, combine store array.
StoreArray< RecoTrack > m_vxdRecoTracks
Store Array of the input tracks.
std::unique_ptr< TrackMatchLookUp > m_vxdTrackMatchLookUp
TrackMatchLookUp for the matching (VXD)
std::string m_cdcRecoTracksStoreArrayName
Name of the input CDC StoreArray.
StoreArray< RecoTrack > m_cdcRecoTracks
Store Array of the input tracks.
MCRelationCreatorModule()
Constructor of the module. Setting up parameters and description.
std::string m_vxdRecoTracksStoreArrayName
Name of the input VXD StoreArray.
Base class for Modules.
Definition: Module.h:72
Abstract base class for different kinds of events.