IAP GITLAB

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

running conex

parent 9eae0de0
No related branches found
No related tags found
No related merge requests found
...@@ -25,5 +25,30 @@ TEST_CASE("CONEX", "[processes]") { ...@@ -25,5 +25,30 @@ TEST_CASE("CONEX", "[processes]") {
SECTION("linking conex") { SECTION("linking conex") {
using std::cout; using std::cout;
using std::endl; using std::endl;
std::string parameterPathName = "";
auto cxModel = eSibyll23;
ConexDynamicInterface cx(cxModel);
int randomSeeds[3];
randomSeeds[0] = 1234;
randomSeeds[1] = 0;
randomSeeds[2] = 0;
int nShower = 1; // large to avoid final stats.
int maxDetail = 0;
int particleListMode = 0;
cx.Init(nShower, randomSeeds, cxModel, maxDetail,
particleListMode,
parameterPathName);
double energyInGeV = 100.;
double zenith = 60;
double azimuth = 0;
double impactParameter = 0;
int particleType = 100;
cx.RunConex(randomSeeds, energyInGeV, zenith, azimuth, impactParameter, particleType);
} }
} }
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