Belle II Software development
AxialStraightTrackFinder.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/AxialStraightTrackCreator.h>
13#include <framework/datastore/StoreArray.h>
14
15#include <vector>
16#include <string>
17
18namespace Belle2 {
23 class ECLCluster;
24
25 namespace TrackingUtilities {
26 class CDCTrack;
27 class CDCWireHit;
28 }
29 namespace TrackFindingCDC {
30
37 TrackingUtilities::Findlet<const TrackingUtilities::CDCWireHit, TrackingUtilities::CDCTrack> {
38
39 private:
42
43 public:
46
47 void initialize() final;
48
50 std::string getDescription() final;
51
53 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
54
56 void apply(const std::vector<TrackingUtilities::CDCWireHit>& wireHits, std::vector<TrackingUtilities::CDCTrack>& tracks);
57
58 private:
61
64
65 // Other findlets, especially post-processing should be here.
66 };
67 }
69}
70
ECL cluster data.
Definition ECLCluster.h:27
The Module parameter list class.
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
A findlet that searches for straight tracks in CDC coming form IP to an ECL cluster.
void apply(const std::vector< TrackingUtilities::CDCWireHit > &wireHits, std::vector< TrackingUtilities::CDCTrack > &tracks)
Main method to apply the track finding.
void initialize() final
Receive signal before the start of the event processing.
std::string getDescription() final
Short description of the findlet.
AxialStraightTrackCreator m_axialStraightTrackCreator
Findlet for straight legendre pass.
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.
StoreArray< ECLCluster > m_storeArrayClusters
Accessor to the ECLClusters StoreArray.
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.