Belle II Software  release-08-01-10
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 
16 namespace Belle2 {
21  namespace CDC {
22 
31 
32  public:
37 
41  virtual ~CDCRecoTrackFilterModule();
42 
43 
47  void initialize() override;
48 
52  void beginRun() override;
56  void event() override;
60  void endRun() override;
64  void terminate() override;
65 
66 
67  private:
68  std::string m_recoTrackArrayName ;
69  std::vector<unsigned short> m_excludeSLayer;
70  std::vector<unsigned short> m_excludeICLayer;
72  };
73  }
75 }
76 
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
Abstract base class for different kinds of events.