Belle II Software  release-05-01-25
TrackFlightTimeAdjuster.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2015 - 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 #include <string>
16 
17 namespace Belle2 {
23  namespace TrackFindingCDC {
24  class CDCTrack;
25 
33  class TrackFlightTimeAdjuster : public Findlet<CDCTrack&> {
34 
35  private:
37  using Super = Findlet<CDCTrack>;
38 
39  public:
41  std::string getDescription() final;
42 
44  void apply(std::vector<CDCTrack>& tracks) final;
45  };
46  }
48 }
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::TrackFindingCDC::TrackFlightTimeAdjuster::Super
Findlet< CDCTrack > Super
Type of the base class.
Definition: TrackFlightTimeAdjuster.h:45
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::TrackFlightTimeAdjuster::apply
void apply(std::vector< CDCTrack > &tracks) final
Adjust the flight time of the given tracks.
Definition: TrackFlightTimeAdjuster.cc:27
Belle2::TrackFindingCDC::TrackFlightTimeAdjuster::getDescription
std::string getDescription() final
Short description of the findlet.
Definition: TrackFlightTimeAdjuster.cc:22