Belle II Software  release-08-01-10
HitReclaimer.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 <tracking/trackFindingCDC/findlets/base/Findlet.h>
12 
13 namespace Belle2 {
18  namespace TrackFindingCDC {
19  class CDCWireHit;
20 
24  class HitReclaimer : public Findlet<const CDCWireHit> {
25 
26  private:
29 
30  public:
33 
35  void initialize() final;
36 
38  std::string getDescription() final;
39 
41  void apply(const std::vector<CDCWireHit>& wireHits);
42  };
43  }
45 }
Class representing a hit wire in the central drift chamber.
Definition: CDCWireHit.h:55
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition: Findlet.h:26
A small findlet that removes flags from hits not accepted by conventional tracking.
Definition: HitReclaimer.h:24
void initialize() final
Initialisation before the event processing starts.
Definition: HitReclaimer.cc:17
void apply(const std::vector< CDCWireHit > &wireHits)
Execute over wireHits.
Definition: HitReclaimer.cc:27
std::string getDescription() final
Short description of the findlet.
Definition: HitReclaimer.cc:22
Abstract base class for different kinds of events.