Skip to content

Commit

Permalink
SignalHandling: fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
andresailer committed Oct 18, 2024
1 parent e3b2708 commit 4364e5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DDG4/include/DDG4/Geant4Kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ namespace dd4hep {
class Geant4Interrupts;
class Geant4ActionPhase;

/// Helper class to indicate the of file
/// Helper class to indicate the end of the input file
class DD4hep_End_Of_File : public std::exception {
public:
DD4hep_End_Of_File() : std::exception() {}
virtual const char* what() const noexcept { return "Reached end of input file"; }
};

/// Helper class to indicate the of file
/// Helper class to indicate the stop of processing
class DD4hep_Stop_Processing : public std::exception {
public:
DD4hep_Stop_Processing() : std::exception() {}
Expand Down
2 changes: 1 addition & 1 deletion DDG4/python/DDG4.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def registerInterruptHandler(self, signum=signal.SIGINT):
Enable interrupt handling: smooth handling of CTRL-C
- Finish processing of the current event(s)
- Drain the event loop
- Properly finalyze the job
- Properly finalize the job
\author M.Frank
"""
Expand Down

0 comments on commit 4364e5f

Please sign in to comment.