PandaRoot
PndFtsReconCircleZOX.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 
20 #include "tool/PndFtsTrack.h"
21 #include "tool/PndFtsContext.h"
22 #include "tool/PndFtsLineHitSet.h"
23 
24 namespace PndFtsTrackFinder {
25 
27  public:
28  PndFtsReconCircleZOX() = delete;
29 
30  explicit PndFtsReconCircleZOX(const PndFtsContext &context);
31 
32  PndFtsReconCircleZOX(const PndFtsContext &&context) = delete;
33 
34  [[nodiscard]] CircleSubtrackVector Exec(const LineTrackVector &ft12Tracks, const PndFtsCircleHitSet &hitSet) const;
35 
36  private:
37  [[nodiscard]] CircleSubtrack ExecItem(const LineTrack &ft12Track, const PndFtsCircleHitSet &hits) const;
38 
39  const PndFtsContext &fContext;
40 };
41 
42 } // namespace PndFtsTrackFinder
std::vector< CircleSubtrack > CircleSubtrackVector
Definition: PndFtsTrack.h:76
CircleSubtrackVector Exec(const LineTrackVector &ft12Tracks, const PndFtsCircleHitSet &hitSet) const
std::vector< LineTrack > LineTrackVector
Definition: PndFtsTrack.h:61