Belle II Software  release-08-01-10
TrackSZFitter.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 <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
13 
14 #include <vector>
15 #include <string>
16 
17 namespace Belle2 {
22  namespace TrackFindingCDC {
23  class CDCTrack;
24 
26  class TrackSZFitter : public Findlet<CDCTrack&> {
27 
28  private:
31 
32  public:
34  std::string getDescription() final;
35 
37  void apply(std::vector<CDCTrack>& tracks) final;
38  };
39  }
41 }
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 for fitting a list of tracks in the SZ direction and replace their trajectory 3D.
Definition: TrackSZFitter.h:26
void apply(std::vector< CDCTrack > &tracks) final
Fit the tracks.
std::string getDescription() final
Short description of the findlet.
Abstract base class for different kinds of events.