Belle II Software development
CDCRecoTrackFilterModule.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
11#include <framework/core/Module.h>
12#include <framework/datastore/StoreArray.h>
13#include <tracking/dataobjects/RecoTrack.h>
14#include <string>
15
16namespace Belle2 {
21 namespace CDC {
22
28
29 public:
34
39
40
44 void initialize() override;
45
49 void beginRun() override;
53 void event() override;
57 void endRun() override;
61 void terminate() override;
62
63
64 private:
65 std::string m_recoTrackArrayName ;
66 std::vector<unsigned short> m_excludeSLayer;
67 std::vector<unsigned short> m_excludeICLayer;
69 };
70 }
72}
73
The module excluding hits of specified Slayers in the RecoTracks.
std::string m_recoTrackArrayName
Belle2::RecoTrack StoreArray name.
void initialize() override
Initializes the Module.
void event() override
Event action (main routine).
void terminate() override
Termination action.
std::vector< unsigned short > m_excludeSLayer
Super layers (0-8) not used in the track fitting.
void beginRun() override
Begin run action.
std::vector< unsigned short > m_excludeICLayer
IClayers (0-55) not used in the track fitting.
StoreArray< RecoTrack > m_RecoTracks
Tracks.
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.