Belle II Software  release-08-01-10
TrackFlightTimeAdjuster.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 #include <string>
14 
15 namespace Belle2 {
21  namespace TrackFindingCDC {
22  class CDCTrack;
23 
31  class TrackFlightTimeAdjuster : public Findlet<CDCTrack&> {
32 
33  private:
36 
37  public:
39  std::string getDescription() final;
40 
42  void apply(std::vector<CDCTrack>& tracks) final;
43  };
44  }
46 }
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
Findlet to adjust the flight time of tracks relative to the flight time zero.
void apply(std::vector< CDCTrack > &tracks) final
Adjust the flight time of the given tracks.
std::string getDescription() final
Short description of the findlet.
Abstract base class for different kinds of events.