seems to work with different geometries

This commit is contained in:
Jan Kieseler
2023-09-21 09:06:20 +02:00
parent cee740716c
commit 8d2302b5dc
8 changed files with 58 additions and 38 deletions
+1 -2
View File
@@ -65,11 +65,10 @@ void ActionInitialization::Build() const
auto runact = new RunAction;
SetUserAction(runact);
auto eventAction = new EventAction;
eventAction->setConstructionWrapper(fDetConstruction->getConstructionWrapper());
eventAction->setRunAction(runact);
eventAction->setPrimaryGeneratorAction(gen);
SetUserAction(eventAction);
auto steppingAction = new SteppingAction(fDetConstruction,eventAction);
auto steppingAction = new SteppingAction(eventAction);
SetUserAction(steppingAction);
}