Belle II Software development
CDCMCCloneLookUpFiller.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 <vector>
13
14namespace Belle2 {
21 namespace TrackFindingCDC {
22 class CDCTrack;
23
25 class CDCMCCloneLookUpFiller : public Findlet<CDCTrack&> {
26
27 private:
30
31 public:
33 std::string getDescription() final;
34
36 void beginEvent() final;
37
39 void apply(std::vector<CDCTrack>& cdcTracks) final;
40 };
41 }
43}
Findlet to exports CDCTracks as RecoTracks.
void beginEvent() final
Signal the beginning of a new event.
std::string getDescription() final
Short description of the findlet.
void apply(std::vector< CDCTrack > &cdcTracks) final
Write give tracks into track store array.
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:41
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition: Findlet.h:26
Abstract base class for different kinds of events.
STL namespace.