Belle II Software development
MonopoleAxialTrackFinderLegendre.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
12#include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorHitLegendre.h>
13
14#include <vector>
15#include <string>
16
17namespace Belle2 {
22
23
24 namespace TrackingUtilities {
25 class CDCTrack;
26 class CDCWireHit;
27 }
28 namespace TrackFindingCDC {
29 enum class LegendreFindingPass;
30
45 TrackingUtilities::Findlet<const TrackingUtilities::CDCWireHit, TrackingUtilities::CDCTrack> {
46
47 private:
50
51 public:
54
56 std::string getDescription() final;
57
59 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
60
62 void apply(const std::vector<TrackingUtilities::CDCWireHit>& wireHits, std::vector<TrackingUtilities::CDCTrack>& tracks);
63
64 private: // findlets
67
70
71 // Other findlets, like HitMigrator and Merger are not yet used because of limiting thresholds
72 };
73 }
75}
The Module parameter list class.
Generates axial tracks from hit using special leaf postprocessing.
void apply(const std::vector< TrackingUtilities::CDCWireHit > &wireHits, std::vector< TrackingUtilities::CDCTrack > &tracks)
Main method to apply the track finding.
AxialTrackCreatorHitLegendre m_straightMonopoleAxialTrackCreatorHitLegendre
Findlet for straight legendre pass.
std::string getDescription() final
Short description of the findlet.
AxialTrackCreatorHitLegendre::EPass EPass
Class of Pass keys.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
TrackingUtilities::Findlet< const TrackingUtilities::CDCWireHit, TrackingUtilities::CDCTrack > Super
Type of the base class.
Class representing a sequence of three dimensional reconstructed hits.
Definition CDCTrack.h:39
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.