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
26
28
29 public:
34
38 virtual ~CDCRecoTrackFilterModule() override;
39
40
44 void initialize() override;
45
49 void event() override;
50
51
52 private:
53 std::string m_recoTrackArrayName ;
54 std::vector<unsigned short> m_excludeSLayer;
55 std::vector<unsigned short> m_excludeICLayer;
57 };
58 }
60}
61
std::string m_recoTrackArrayName
Belle2::RecoTrack StoreArray name.
void initialize() override
Initializes the Module.
void event() override
Event action (main routine).
std::vector< unsigned short > m_excludeSLayer
Super layers (0-8) not used in the track fitting.
std::vector< unsigned short > m_excludeICLayer
IClayers (0-55) not used in the track fitting.
StoreArray< RecoTrack > m_RecoTracks
Tracks.
virtual ~CDCRecoTrackFilterModule() override
Destructor.
Module()
Constructor.
Definition Module.cc:30
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Abstract base class for different kinds of events.