Belle II Software  release-05-01-25
TrackSZFitter.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Nils Braun *
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 <tracking/trackFindingCDC/eventdata/tracks/CDCTrack.h>
15 
16 #include <vector>
17 #include <string>
18 
19 namespace Belle2 {
24  namespace TrackFindingCDC {
25  class CDCTrack;
26 
28  class TrackSZFitter : public Findlet<CDCTrack&> {
29 
30  private:
32  using Super = Findlet<CDCTrack&>;
33 
34  public:
36  std::string getDescription() final;
37 
39  void apply(std::vector<CDCTrack>& tracks) final;
40  };
41  }
43 }
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::TrackFindingCDC::TrackSZFitter::Super
Findlet< CDCTrack & > Super
Type of the base class.
Definition: TrackSZFitter.h:40
Belle2::TrackFindingCDC::TrackSZFitter::apply
void apply(std::vector< CDCTrack > &tracks) final
Fit the tracks.
Definition: TrackSZFitter.cc:38
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::TrackSZFitter::getDescription
std::string getDescription() final
Short description of the findlet.
Definition: TrackSZFitter.cc:33