Belle II Software release-09-00-00
BestVXDFamilyCandidateSelectorModule.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 <tracking/spacePointCreation/SpacePointTrackCand.h>
11#include <framework/datastore/StoreArray.h>
12#include <framework/core/Module.h>
13
14namespace Belle2 {
24 public:
27
29 void initialize() override final;
30
32 void event() override final;
33
34 protected:
35
36 // parameters
37
40
41
42 // member variables
43
46 };
48}
Module that selects the best candidate for each SPTC family.
void initialize() override final
Requires SpacePointTrackCands.
void event() override final
Application of the cut.
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
StoreArray for input SpacePointTrackCands.
std::string m_nameSpacePointTrackCands
Name of input StoreArray containing SpacePointTrackCands.
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.