Belle II Software  release-08-01-10
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/trackFindingCDC/findlets/base/Findlet.h>
11 #include <vector>
12 
13 namespace Belle2 {
18  namespace TrackFindingCDC {
19  class CDCWireHit;
20  class CDCRLWireHit;
21 
27  class RLTaggedWireHitCreator : public Findlet<CDCWireHit&, CDCRLWireHit> {
28 
29  private:
32 
33  public:
35  std::string getDescription() final;
36 
38  void apply(std::vector<CDCWireHit>& inputWireHits, std::vector<CDCRLWireHit>& outputRLWireHits) final;
39  };
40  }
42 }
Class representing an oriented hit wire including a hypotheses whether the causing track passes left ...
Definition: CDCRLWireHit.h:41
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
Findlet for creating a list of RLWireHits (always bot hypothesis) from a list of WireHits using only ...
std::string getDescription() final
Short description of the findlet.
void apply(std::vector< CDCWireHit > &inputWireHits, std::vector< CDCRLWireHit > &outputRLWireHits) final
Generates the segment from wire hits.
Abstract base class for different kinds of events.