Belle II Software development
RLTaggedWireHitCreator.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#pragma once
9
10#include <tracking/trackingUtilities/findlets/base/Findlet.h>
11#include <vector>
12
13namespace Belle2 {
18 namespace TrackingUtilities {
19 class CDCWireHit;
20 class CDCRLWireHit;
21 }
22
23 namespace TrackFindingCDC {
24
30 class RLTaggedWireHitCreator : public TrackingUtilities::Findlet<TrackingUtilities::CDCWireHit&, TrackingUtilities::CDCRLWireHit> {
31
32 private:
35
36 public:
38 std::string getDescription() final;
39
41 void apply(std::vector<TrackingUtilities::CDCWireHit>& inputWireHits,
42 std::vector<TrackingUtilities::CDCRLWireHit>& outputRLWireHits) final;
43 };
44 }
46}
Findlet for creating a list of RLWireHits (always bot hypothesis) from a list of WireHits using only ...
void apply(std::vector< TrackingUtilities::CDCWireHit > &inputWireHits, std::vector< TrackingUtilities::CDCRLWireHit > &outputRLWireHits) final
Generates the segment from wire hits.
std::string getDescription() final
Short description of the findlet.
TrackingUtilities::Findlet< TrackingUtilities::CDCWireHit &, TrackingUtilities::CDCRLWireHit & > Super
Type of the base class.
Class representing an oriented hit wire including a hypotheses whether the causing track passes left ...
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.