IAP GITLAB

Skip to content
Snippets Groups Projects
Commit a1556502 authored by ralfulrich's avatar ralfulrich
Browse files

also allow reference members in FourVector

parent cd3e9f46
No related branches found
No related tags found
No related merge requests found
...@@ -167,6 +167,11 @@ namespace corsika::process { ...@@ -167,6 +167,11 @@ namespace corsika::process {
using corsika::geometry::Point; using corsika::geometry::Point;
using namespace corsika::units::si; using namespace corsika::units::si;
// TODO: this should be done in a central, common place. Not here..
#ifndef CORSIKA_OSX
feenableexcept(FE_INVALID);
#endif
fCount++; fCount++;
SibStack ss; SibStack ss;
ss.Clear(); ss.Clear();
...@@ -212,6 +217,11 @@ namespace corsika::process { ...@@ -212,6 +217,11 @@ namespace corsika::process {
} }
// empty sibyll stack // empty sibyll stack
ss.Clear(); ss.Clear();
// TODO: this should be done in a central, common place. Not here..
#ifndef CORSIKA_OSX
fedisableexcept(FE_INVALID);
#endif
} }
}; };
} // namespace sibyll } // namespace sibyll
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment