-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from 2xB/2xB/errorpath
Print geometry path in case of e.g. GSL error during calculation
- Loading branch information
Showing
9 changed files
with
108 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef KGPATHAWARE_HH_ | ||
#define KGPATHAWARE_HH_ | ||
|
||
#include "KTagged.h" | ||
|
||
#include <string> | ||
|
||
namespace KGeoBag | ||
{ | ||
|
||
class KGPathAware : public katrin::KTagged | ||
{ | ||
public: | ||
KGPathAware(); | ||
KGPathAware(const KGPathAware& aCopy); | ||
~KGPathAware() override; | ||
|
||
KGPathAware& operator=(const KGPathAware& other); | ||
|
||
virtual std::string GetPath() const {return "";}; | ||
}; | ||
|
||
} // namespace KGeoBag | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include "KGPathAware.hh" | ||
|
||
namespace KGeoBag | ||
{ | ||
|
||
KGPathAware::KGPathAware() : KTagged() {} | ||
KGPathAware::KGPathAware(const KGPathAware&) = default; | ||
KGPathAware::~KGPathAware() = default; | ||
KGPathAware& KGPathAware::operator=(const KGPathAware&) = default; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters