EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FsmwMode1dFinder.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FsmwMode1dFinder.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2019 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
12 
13 #include <sstream>
14 #include <vector>
15 
16 namespace Acts {
17 
19 
26 
29 
34  public:
36  FsmwMode1dFinder() = default;
37 
42  FsmwMode1dFinder(double firstFraction, double fraction);
43 
50  std::vector<std::pair<double, double>> inputVector) const;
51 
52  private:
53  double m_firstFraction = 0.5;
54  double m_fraction = 0.5;
55 };
56 
57 } // namespace Acts