Belle II Software development
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 {
27 class PXDSVDCutModule : public Module {
28
29 public:
30
33
35 void initialize() override;
36
38 void event() override;
39
40
41 protected:
42
43 // module parameters
44
47
50
51 // member variables
52
55 };
57}
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.