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/trackFindingCDC/findlets/base/Findlet.h>
11
12#include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorHitLegendre.h>
13
14#include <vector>
15#include <string>
16
17namespace Belle2 {
24 namespace TrackFindingCDC {
25 class CDCTrack;
26 class CDCWireHit;
27 enum class LegendreFindingPass;
28
42 class MonopoleAxialTrackFinderLegendre : public Findlet<const CDCWireHit, CDCTrack> {
43
44 private:
47
48 public:
51
53 std::string getDescription() final;
54
56 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
57
59 void apply(const std::vector<CDCWireHit>& wireHits, std::vector<CDCTrack>& tracks);
60
61 private: // findlets
64
67
68 // Other findlets, like HitMigrator and Merger are not yet used because of limiting thresholds
69 };
70 }
72}
The Module parameter list class.
Generates axial tracks from hit using special leaf postprocessing.
EPass
Pass keys for the different sets of predefined parameters for a pass if legendre search Note: Naming ...
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.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
Generates monopole-like axial tracks from hit using special leaf postprocessing.
AxialTrackCreatorHitLegendre m_straightMonopoleAxialTrackCreatorHitLegendre
Findlet for straight legendre pass.
std::string getDescription() final
Short description of the findlet.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
void apply(const std::vector< CDCWireHit > &wireHits, std::vector< CDCTrack > &tracks)
Main method to apply the track finding.
Abstract base class for different kinds of events.
STL namespace.