IAP GITLAB

Skip to content
Snippets Groups Projects
Commit dad9ecad authored by Nikos Karastathis's avatar Nikos Karastathis :ocean:
Browse files

update testRadio.cpp to use step object

parent c9eaa2df
No related branches found
No related tags found
1 merge request!329Radio interface
......@@ -148,8 +148,9 @@ TEST_CASE("Radio", "[processes]") {
decltype(StraightPropagator(envCoREAS))>
coreas(detector, envCoREAS);
Step step(particle1, base);
// check doContinuous and simulate methods
coreas.doContinuous(particle1, base, true);
coreas.doContinuous(step, true);
} // END: SECTION("CoREAS process")
SECTION("ZHS process") {
......@@ -252,8 +253,9 @@ TEST_CASE("Radio", "[processes]") {
decltype(StraightPropagator(envZHS))>
zhs(detector, envZHS);
Step step(particle1, base);
// check doContinuous and simulate methods
zhs.doContinuous(particle1, base, true);
zhs.doContinuous(step, true);
} // END: SECTION("ZHS process")
......
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