EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HitSmearing.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file HitSmearing.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 
14 
15 #include <string>
16 #include <unordered_map>
17 
18 namespace Acts {
19 class Surface;
20 class TrackingGeometry;
21 } // namespace Acts
22 
23 namespace ActsExamples {
24 
29 class HitSmearing final : public BareAlgorithm {
30  public:
31  struct Config {
33  std::string inputSimulatedHits;
35  std::string outputSourceLinks;
37  double sigmaLoc0 = -1;
38  double sigmaLoc1 = -1;
40  std::shared_ptr<const Acts::TrackingGeometry> trackingGeometry;
42  std::shared_ptr<const RandomNumbers> randomNumbers = nullptr;
43  };
44 
45  HitSmearing(const Config& cfg, Acts::Logging::Level lvl);
46 
47  ProcessCode execute(const AlgorithmContext& ctx) const final override;
48 
49  private:
52  std::unordered_map<Acts::GeometryIdentifier, const Acts::Surface*> m_surfaces;
53 };
54 
55 } // namespace ActsExamples