Belle II Software  release-05-02-19
PXDSVDCutModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2017 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Sebastian Racs *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 #include <tracking/spacePointCreation/SpacePointTrackCand.h>
13 
14 #include <framework/datastore/StoreArray.h>
15 #include <framework/core/Module.h>
16 
17 #include <string>
18 
19 namespace Belle2 {
32  class PXDSVDCutModule : public Module {
33 
34  public:
35 
38 
40  void initialize() override;
41 
43  void event() override;
44 
45 
46  protected:
47 
48  // module parameters
49 
51  int m_minSVDSPs;
52 
55 
56  // member variables
57 
60  };
62 }
Belle2::PXDSVDCutModule::initialize
void initialize() override
Initializes the Module.
Definition: PXDSVDCutModule.cc:33
Belle2::PXDSVDCutModule::m_spacePointTrackCands
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
the storeArray for SpacePointTrackCands as member, is faster than recreating link for each event
Definition: PXDSVDCutModule.h:67
Belle2::PXDSVDCutModule::event
void event() override
Applies the selected quality estimation method for a given set of TCs.
Definition: PXDSVDCutModule.cc:38
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXDSVDCutModule::m_SpacePointTrackCandsStoreArrayName
std::string m_SpacePointTrackCandsStoreArrayName
sets the name of the expected StoreArray containing SpacePointTrackCands
Definition: PXDSVDCutModule.h:62
Belle2::PXDSVDCutModule::PXDSVDCutModule
PXDSVDCutModule()
Constructor of the module.
Definition: PXDSVDCutModule.cc:20
Belle2::StoreArray< SpacePointTrackCand >
Belle2::PXDSVDCutModule::m_minSVDSPs
int m_minSVDSPs
Minimum number of SVD SpacePointss to keep a SpacePointTrackCandidate.
Definition: PXDSVDCutModule.h:59