EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PlanarModuleStepper.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PlanarModuleStepper.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2016-2018 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 #include <memory>
16 #include <vector>
17 
18 namespace Acts {
19 
20 class DigitizationModule;
21 
27 
29  public:
34  PlanarModuleStepper(std::unique_ptr<const Logger> mlogger = getDefaultLogger(
35  "PlanarModuleStepper", Logging::INFO));
36 
38  ~PlanarModuleStepper() = default;
39 
48  std::vector<DigitizationStep> cellSteps(const GeometryContext& gctx,
49  const DigitizationModule& dmodule,
50  const Vector3D& startPoint,
51  const Vector3D& endPoint) const;
52 
61  std::vector<DigitizationStep> cellSteps(const GeometryContext& gctx,
62  const DigitizationModule& dmodule,
63  const Vector2D& moduleIntersection,
64  const Vector3D& trackDirection) const;
65 
69  void setLogger(std::unique_ptr<const Logger> logger) {
70  m_logger = std::move(logger);
71  }
72 
73  private:
75  const Logger& logger() const { return *m_logger; }
76 
78  std::unique_ptr<const Logger> m_logger;
79 };
80 
81 } // namespace Acts