Belle II Software development
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 {
21 public:
24
26 void initialize() override final;
27
29 void event() override final;
30
31 protected:
32
33 // parameters
34
37
38
39 // member variables
40
43 };
45}
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.