Belle II Software development
FlippedRecoTracksMergerModule.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#include <framework/database/DBObjPtr.h>
12#include <framework/datastore/StoreArray.h>
13
18namespace Belle2 {
23 class RecoTrack;
25 class TrackFitResult;
26
57
58}
59
Class for accessing objects in the database.
Definition DBObjPtr.h:21
StoreArray< RecoTrack > m_inputRecoTracks
store array for the input RecoTracks
std::string m_inputStoreArrayNameFlipped
Name of the input StoreArray for flipped tracks.
void initialize() override
Declare required StoreArray.
StoreArray< TrackFitResult > m_trackFitResults
StoreArray of TrackFitResult, only default name should be considered here.
DBObjPtr< TrackFlippingCuts > m_flipCutsFromDB
flipping cuts could be read from the DB
std::string m_inputStoreArrayName
Name of the input StoreArray.
FlippedRecoTracksMergerModule()
Constructor of the module. Setting up parameters and description.
StoreArray< RecoTrack > m_inputRecoTracksFlipped
store array for the input flipped RecoTracks
Module()
Constructor.
Definition Module.cc:30
This is the Reconstruction Event-Data Model Track.
Definition RecoTrack.h:79
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Values of the result of a track fit with a given particle hypothesis.
The payload containing the cuts for 2 mva based filters to decide whether a RecoTrack should be flipp...
Abstract base class for different kinds of events.