Belle II Software release-09-00-00
PXDSVDCutModule.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
9#pragma once
10#include <tracking/spacePointCreation/SpacePointTrackCand.h>
11
12#include <framework/datastore/StoreArray.h>
13#include <framework/core/Module.h>
14
15#include <string>
16
17namespace Belle2 {
30 class PXDSVDCutModule : public Module {
31
32 public:
33
36
38 void initialize() override;
39
41 void event() override;
42
43
44 protected:
45
46 // module parameters
47
50
53
54 // member variables
55
58 };
60}
Base class for Modules.
Definition: Module.h:72
The module to deactivate the SpacePointTrackCandidates with less than minSVDSPs SVD SpacePoints.
std::string m_SpacePointTrackCandsStoreArrayName
sets the name of the expected StoreArray containing SpacePointTrackCands
void initialize() override
Initializes the Module.
void event() override
Applies the selected quality estimation method for a given set of TCs.
int m_minSVDSPs
Minimum number of SVD SpacePointss to keep a SpacePointTrackCandidate.
PXDSVDCutModule()
Constructor of the module.
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
the storeArray for SpacePointTrackCands as member, is faster than recreating link for each event
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.