Belle II Software development
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/trackingUtilities/findlets/base/Findlet.h>
11
12#include <tracking/trackingUtilities/eventdata/tracks/CDCTrack.h>
13
14#include <vector>
15#include <string>
16
17namespace Belle2 {
22 namespace TrackingUtilities {
23 class CDCTrack;
24 }
25
26 namespace TrackFindingCDC {
27
29 class TrackSZFitter : public TrackingUtilities::Findlet<TrackingUtilities::CDCTrack&> {
30
31 private:
34
35 public:
37 std::string getDescription() final;
38
40 void apply(std::vector<TrackingUtilities::CDCTrack>& tracks) final;
41 };
42 }
44}
Findlet for fitting a list of tracks in the SZ direction and replace their trajectory 3D.
void apply(std::vector< TrackingUtilities::CDCTrack > &tracks) final
Fit the tracks.
TrackingUtilities::Findlet< TrackingUtilities::CDCTrack & > Super
Type of the base class.
std::string getDescription() final
Short description of the findlet.
Class representing a sequence of three dimensional reconstructed hits.
Definition CDCTrack.h:39
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition Findlet.h:26
STL class.
Abstract base class for different kinds of events.
STL namespace.