PandaRoot
PndFtsReconCircleZOY.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 //
14 // Created by Bartosz Sobol on 11.03.2021.
15 //
16 
17 #pragma once
18 
19 #include "tool/PndFtsLineHitSet.h"
20 #include "tool/PndFtsContext.h"
21 #include "tool/PndFtsTrack.h"
22 
23 namespace PndFtsTrackFinder {
24 
26  public:
27  PndFtsReconCircleZOY() = delete;
28 
29  explicit PndFtsReconCircleZOY(const PndFtsContext &context);
30 
31  PndFtsReconCircleZOY(const PndFtsContext &&context) = delete;
32 
33  [[nodiscard]] LineSubtrackVector Exec(const LineTrackVector &ft12Tracks, const PndFtsCircleHitSet &hitSet, const CircleSubtrackVector &zoxTracks) const;
34 
35  private:
36  [[nodiscard]] LineSubtrack ExecItem(const LineTrack &ft12Track, const PndFtsCircleHitSet &hits, const CircleSubtrack &zoxTrack) const;
37 
38  const PndFtsContext &fContext;
39 };
40 
41 } // namespace PndFtsTrackFinder
std::vector< CircleSubtrack > CircleSubtrackVector
Definition: PndFtsTrack.h:76
LineSubtrackVector Exec(const LineTrackVector &ft12Tracks, const PndFtsCircleHitSet &hitSet, const CircleSubtrackVector &zoxTracks) const
std::vector< LineTrack > LineTrackVector
Definition: PndFtsTrack.h:61
std::vector< LineSubtrack > LineSubtrackVector
Definition: PndFtsTrack.h:41