Belle II Software  release-05-01-25
CDCMCCloneLookUpFiller.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Oliver Frost *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/trackFindingCDC/findlets/base/Findlet.h>
13 
14 #include <vector>
15 
16 namespace Belle2 {
23  namespace TrackFindingCDC {
24  class CDCTrack;
25 
27  class CDCMCCloneLookUpFiller : public Findlet<CDCTrack&> {
28 
29  private:
31  using Super = Findlet<CDCTrack&>;
32 
33  public:
35  std::string getDescription() final;
36 
38  void beginEvent() final;
39 
41  void apply(std::vector<CDCTrack>& cdcTracks) final;
42  };
43  }
45 }
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::TrackFindingCDC::CDCMCCloneLookUpFiller::getDescription
std::string getDescription() final
Short description of the findlet.
Definition: CDCMCCloneLookUpFiller.cc:19
Belle2::TrackFindingCDC::CDCMCCloneLookUpFiller::beginEvent
void beginEvent() final
Signal the beginning of a new event.
Definition: CDCMCCloneLookUpFiller.cc:25
Belle2::TrackFindingCDC::CDCMCCloneLookUpFiller::Super
Findlet< CDCTrack & > Super
Type of the base class.
Definition: CDCMCCloneLookUpFiller.h:39
Belle2::TrackFindingCDC::CDCMCCloneLookUpFiller::apply
void apply(std::vector< CDCTrack > &cdcTracks) final
Write give tracks into track store array.
Definition: CDCMCCloneLookUpFiller.cc:30
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19