From deaf888c82a08bb3ceda0a95f186006875b6d267 Mon Sep 17 00:00:00 2001 From: ivana Date: Tue, 13 Feb 2001 15:32:22 +0000 Subject: [PATCH] removed options ALICE_STACKING, ALICE_EMPTY_PHYSICS_LIST; TG4PhysicsList replaced with TG4ModularPhysicsList --- AliGeant4/AliRunConfiguration.cxx | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/AliGeant4/AliRunConfiguration.cxx b/AliGeant4/AliRunConfiguration.cxx index b769bbaffe5..9bd88f9850b 100644 --- a/AliGeant4/AliRunConfiguration.cxx +++ b/AliGeant4/AliRunConfiguration.cxx @@ -5,7 +5,6 @@ #include "AliRunConfiguration.h" #include "AliRunMessenger.h" - #include "AliDetConstruction.h" #include "AliPrimaryGeneratorAction.h" #include "AliRunAction.h" @@ -15,11 +14,7 @@ #include "AliSteppingAction.h" #include "AliFiles.h" -#ifdef ALICE_EMPTY_PHYSICS_LIST -#include "AliEmptyPhysicsList.h" -#else -#include "TG4PhysicsList.h" -#endif +#include "TG4ModularPhysicsList.h" AliRunConfiguration::AliRunConfiguration(){ // @@ -69,11 +64,7 @@ void AliRunConfiguration::CreateUserConfiguration() // create mandatory Geant4 classes fDetectorConstruction = new AliDetConstruction(); -#ifndef ALICE_EMPTY_PHYSICS_LIST - fPhysicsList = new TG4PhysicsList(); -#else - fPhysicsList = new AliEmptyPhysicsList(); -#endif + fPhysicsList = new TG4ModularPhysicsList(); fPrimaryGenerator = new AliPrimaryGeneratorAction(); // create the other user action classes @@ -81,9 +72,7 @@ void AliRunConfiguration::CreateUserConfiguration() fEventAction = new AliEventAction(); fTrackingAction = new AliTrackingAction(); fSteppingAction = new AliSteppingAction(); -#ifdef ALICE_STACKING fStackingAction = new AliStackingAction(); -#endif } // public methods -- 2.39.3