IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 36ade5d1 authored by ralfulrich's avatar ralfulrich Committed by Ralf Ulrich
Browse files

fixed includes

parent 08627eb7
No related branches found
No related tags found
1 merge request!387Hadronic model interface overhaul
......@@ -8,11 +8,13 @@
#include <corsika/modules/qgsjetII/InteractionModel.hpp>
#include <corsika/framework/geometry/QuantityVector.hpp>
#include <corsika/framework/geometry/FourVector.hpp>
#include <corsika/framework/geometry/Point.hpp>
#include <corsika/modules/qgsjetII/ParticleConversion.hpp>
#include <corsika/modules/qgsjetII/QGSJetIIFragmentsStack.hpp>
#include <corsika/modules/qgsjetII/QGSJetIIStack.hpp>
#include <corsika/framework/utility/COMBoost.hpp>
#include <sstream>
......
......@@ -11,7 +11,6 @@
#include <corsika/framework/core/ParticleProperties.hpp>
#include <corsika/framework/core/PhysicalUnits.hpp>
#include <corsika/framework/random/RNGManager.hpp>
#include <corsika/framework/utility/COMBoost.hpp>
#include <tuple>
namespace corsika::sibyll {
......
......@@ -269,11 +269,7 @@ TEST_CASE("SibyllInterface", "modules") {
MomentumVector(cs, {0_eV, 0_eV, 0_eV}));
model.doInteraction(view, pid, Code::Oxygen, P4, targetP4);
CrossSectionType const cx = model.getCrossSection(pid, Code::Oxygen, P4, targetP4);
// Felix, are those changes OK? Below are the checks before refactory-2020
// CHECK(length / 1_g * 1_cm * 1_cm == Approx(44.2).margin(.1));
// CHECK(view.getSize() == 11);
CHECK(cx / 1_mb == Approx(1100).margin(100)); // this is not physics validation
// CHECK(view.getSize() == 20); // also sibyll not stable wrt. to compiler changes
CHECK(cx / 1_mb == Approx(1100).margin(100)); // this is not physics validation
CHECK(view.getSize() == Approx(40).margin(30)); // this is not physics validation
}
}
......
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