Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SteppingActionList.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SteppingActionList.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2023 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 <memory>
16 #include <optional>
17 #include <string>
18 
19 #include <G4UserSteppingAction.hh>
20 
21 namespace ActsExamples {
22 
25 class SteppingActionList : public G4UserSteppingAction {
26  public:
27  struct Config {
28  std::vector<std::shared_ptr<G4UserSteppingAction>> actions;
29  };
30 
31  SteppingActionList(const Config &cfg) : m_cfg(cfg) {}
32 
33  void UserSteppingAction(const G4Step *step) override {
34  for (const auto &action : m_cfg.actions) {
35  if (action) {
36  action->UserSteppingAction(step);
37  }
38  }
39  }
40 
41  private:
43 };
44 
45 } // namespace ActsExamples