2 from SimulationConfig.SimEnums
import BeamPipeSimMode, CalibrationRun, LArParameterization
6 """Turns on GFlash shower parametrization for FCAL"""
7 flags.Sim.LArParameterization = LArParameterization.FrozenShowersFCalOnly
8 flags.Sim.CalibrationRun = CalibrationRun.Off
12 """Turns off GFlash shower parametrization for FCAL"""
13 flags.Sim.LArParameterization = LArParameterization.NoFrozenShowers
17 flags.Sim.BeamPipeCut = 0.
18 flags.Sim.BeamPipeSimMode = BeamPipeSimMode.FastSim
22 flags.Sim.BeamPipeCut = 100.0
23 flags.Sim.BeamPipeSimMode = BeamPipeSimMode.Normal
27 flags.Sim.TightMuonStepping =
True
31 flags.Sim.TightMuonStepping =
False
35 """Activate magnetic field switch off in central LAr calorimeter"""
36 flags.Sim.MuonFieldOnlyInCalo =
True
40 flags.Sim.MuonFieldOnlyInCalo =
False
44 """Activate Photon Russian Roulette: Fast simulation" killing low energy photons with some probability."""
45 flags.Sim.PRRThreshold = 0.5
46 flags.Sim.PRRWeight = 10.
50 flags.Sim.PRRThreshold =
False
51 flags.Sim.PRRWeight =
False
55 """Activate Neutron Russian Roulette: Fast simulation" killing low energy neutrons with some probability."""
56 flags.Sim.NRRThreshold = 2.
57 flags.Sim.NRRWeight = 10.
58 flags.Sim.CalibrationRun = CalibrationRun.Off
62 flags.Sim.NRRThreshold =
False
63 flags.Sim.NRRWeight =
False
67 """Turn on range cuts for gamma processes (conv, phot, compt)"""
68 flags.Sim.G4Commands += [
'/process/em/applyCuts true']
72 commands = flags.Sim.G4Commands
73 commands.remove(
"/process/em/applyCuts true")
74 flags.Sim.G4Commands = commands
78 """Activate the G4GammaGeneralProcess and the UserAction required"""
79 flags.Sim.G4Commands+=[
"/process/em/UseGeneralProcess true"]
80 flags.Sim.OptionalUserActionList += [
'G4UserActions.G4UserActionsConfig.FixG4CreatorProcessToolCfg']
84 """Disables G4GammaGeneralProcess AND Woodcock tracking"""
85 commands = flags.Sim.G4Commands
86 commands.remove(
"/process/em/UseGeneralProcess true")
87 commands.remove(
"/process/em/useWoodcockTracking EMEC")
88 flags.Sim.G4Commands = commands
89 optionalUserActions = flags.Sim.OptionalUserActionList
90 optionalUserActions.remove(
"G4UserActions.G4UserActionsConfig.FixG4CreatorProcessToolCfg")
91 flags.Sim.OptionalUserActionList = optionalUserActions
95 """Activate the Woodcock Tracking in the EMEC"""
96 flags.Sim.G4Commands += [
'/process/em/useWoodcockTracking EMEC']
100 if "G4UserActions.G4UserActionsConfig.FixG4CreatorProcessToolCfg" not in flags.Sim.OptionalUserActionList:
101 flags.Sim.OptionalUserActionList += [
'G4UserActions.G4UserActionsConfig.FixG4CreatorProcessToolCfg']
105 commands = flags.Sim.G4Commands
106 commands.remove(
"/process/em/useWoodcockTracking EMEC")
107 flags.Sim.G4Commands = commands
108 if "/process/em/UseGeneralProcess true" not in flags.Sim.G4Commands:
109 optionalUserActions = flags.Sim.OptionalUserActionList
110 optionalUserActions.remove(
"G4UserActions.G4UserActionsConfig.FixG4CreatorProcessToolCfg")
111 flags.Sim.OptionalUserActionList = optionalUserActions
115 """Enable G4 optimizations"""
158 """ Ensure all G4Optimizations are disabled - useful for debugging """
173 commands = flags.Sim.G4Commands
174 commands.remove(
"/process/em/useWoodcockTracking EMECPara")
175 flags.Sim.G4Commands = commands + [
"/process/em/useWoodcockTracking EMEC"]
182 commands = flags.Sim.G4Commands
183 commands.remove(
"/process/em/useWoodcockTracking EMEC")
184 flags.Sim.G4Commands = commands + [
"/process/em/useWoodcockTracking EMECPara"]
191 from AthenaConfiguration.ComponentAccumulator
import ConfigurationError
194 detConTool = cfg.getPublicTool(
'G4AtlasDetectorConstructionTool')
195 except ConfigurationError:
197 if detConTool
is None:
199 detConTool.RegionCreators[
'DeadMaterialPhysicsRegionTool'].VolumeList.remove(
'BeamPipe::SectionF198')
200 detConTool.RegionCreators[
'DeadMaterialPhysicsRegionTool'].VolumeList.remove(
'BeamPipe::SectionF199')