Belle II Software  release-05-01-25
BestVXDFamilyCandidateSelectorModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2017 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Jonas Wagner *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/spacePointCreation/SpacePointTrackCand.h>
13 #include <framework/datastore/StoreArray.h>
14 #include <framework/core/Module.h>
15 
16 namespace Belle2 {
25  class BestVXDFamilyCandidateSelectorModule : public Module {
26  public:
29 
31  void initialize() override final;
32 
34  void event() override final;
35 
36  protected:
37 
38  // parameters
39 
41  std::string m_nameSpacePointTrackCands;
42 
43 
44  // member variables
45 
47  StoreArray<SpacePointTrackCand> m_spacePointTrackCands;
48  };
50 }
Belle2::BestVXDFamilyCandidateSelectorModule::initialize
void initialize() override final
Requires SpacePointTrackCands.
Definition: BestVXDFamilyCandidateSelectorModule.cc:28
Belle2::BestVXDFamilyCandidateSelectorModule::m_spacePointTrackCands
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
StoreArray for input SpacePointTrackCands.
Definition: BestVXDFamilyCandidateSelectorModule.h:55
Belle2::BestVXDFamilyCandidateSelectorModule::m_nameSpacePointTrackCands
std::string m_nameSpacePointTrackCands
Name of input StoreArray containing SpacePointTrackCands.
Definition: BestVXDFamilyCandidateSelectorModule.h:49
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::BestVXDFamilyCandidateSelectorModule::BestVXDFamilyCandidateSelectorModule
BestVXDFamilyCandidateSelectorModule()
Constructor of the module.
Definition: BestVXDFamilyCandidateSelectorModule.cc:19
Belle2::BestVXDFamilyCandidateSelectorModule::event
void event() override final
Application of the cut.
Definition: BestVXDFamilyCandidateSelectorModule.cc:33