EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RunAction.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RunAction.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2017-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
10 
11 #include <memory>
12 
13 #include <G4UserRunAction.hh>
14 #include <globals.hh>
15 
16 class G4Run;
17 
18 namespace ActsExamples {
19 
27 class RunAction final : public G4UserRunAction {
28  public:
30  static RunAction* instance();
31 
33  RunAction();
34  ~RunAction() final override;
35 
38  void BeginOfRunAction(const G4Run*) final override;
39 
41  void EndOfRunAction(const G4Run*) final override;
42 
43  private:
46 };
47 
48 } // namespace ActsExamples