EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PerigeeSurface.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PerigeeSurface.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2016-2020 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
14 
15 namespace Acts {
16 
24 class PerigeeSurface : public LineSurface {
25  friend Surface;
26 
27  protected:
31  PerigeeSurface(const Vector3D& gp);
32 
37 
41  PerigeeSurface(const PerigeeSurface& other);
42 
49  const Transform3D& shift);
50 
51  public:
53  ~PerigeeSurface() override = default;
54 
56  PerigeeSurface() = delete;
57 
62 
64  SurfaceType type() const final;
65 
67  std::string name() const final;
68 
75  std::ostream& toStream(const GeometryContext& gctx,
76  std::ostream& sl) const final;
77 
85  size_t /*ignored*/) const final;
86 };
87 
88 } // namespace Acts