Belle II Software development
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/trackingUtilities/findlets/base/Findlet.h>
12
13namespace Belle2 {
18 namespace TrackingUtilities {
19 class CDCWireHit;
20 }
21
22 namespace TrackFindingCDC {
23
27 class HitReclaimer : public TrackingUtilities::Findlet<const TrackingUtilities::CDCWireHit> {
28
29 private:
32
33 public:
36
38 void initialize() final;
39
41 std::string getDescription() final;
42
44 void apply(const std::vector<TrackingUtilities::CDCWireHit>& wireHits);
45 };
46 }
48}
void initialize() final
Initialisation before the event processing starts.
TrackingUtilities::Findlet< const TrackingUtilities::CDCWireHit > Super
Type of the base class.
std::string getDescription() final
Short description of the findlet.
void apply(const std::vector< TrackingUtilities::CDCWireHit > &wireHits)
Execute over wireHits.
Class representing a hit wire in the central drift chamber.
Definition CDCWireHit.h:58
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition Findlet.h:26
STL class.
Abstract base class for different kinds of events.
STL namespace.