Skip to content
Snippets Groups Projects
Commit 3c95888a authored by James Beacham's avatar James Beacham
Browse files

Merge branch 'TRTCuts_ATLMCPROD-5306_21.0' into '21.0'

New postInclude job options for use in HECO systematic samples

See merge request atlas/athena!6963

Former-commit-id: 94735a2dd00dd1de63d355da106c6e522dcd2c1c
parents 49f3fc6a 39ae81e7
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@
#########################################################
atlasG4log.info("G4 TRT Config: Setting TRT cut")
rom AthenaCommon.CfgGetter import getService
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=10. #FIXME Units?!
from AthenaCommon.CfgGetter import getService
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=10.*Units.mm
# FIXME: Is it correct to alter only the e- cut and leave the e+ and
# photon cuts unchanged?
......@@ -9,6 +9,7 @@
atlasG4log.info("G4 TRT Config: Setting TRT cut")
from AthenaCommon.CfgGetter import getService
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=100. #FIXME Units?!
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=100.*Units.mm
# FIXME: Is it correct to alter only the e- cut and leave the e+ and
# photon cuts unchanged?
......@@ -9,6 +9,7 @@
atlasG4log.info("G4 TRT Config: Setting TRT cut")
from AthenaCommon.CfgGetter import getService
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=5. #FIXME Units?!
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=5.*Units.mm
# FIXME: Is it correct to alter only the e- cut and leave the e+ and
# photon cuts unchanged?
......@@ -9,6 +9,7 @@
atlasG4log.info("G4 TRT Config: Setting TRT cut")
from AthenaCommon.CfgGetter import getService
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=50. #FIXME Units?!
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=50.*Units.mm
# FIXME: Is it correct to alter only the e- cut and leave the e+ and
# photon cuts unchanged?
......@@ -9,6 +9,7 @@
atlasG4log.info("G4 TRT Config: Setting TRT cut")
from AthenaCommon.CfgGetter import getService
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=500. #FIXME Units?!
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=500.*Units.mm
# FIXME: Is it correct to alter only the e- cut and leave the e+ and
# photon cuts unchanged?
#########################################################
#
# SimulationJobOptions/postInclude.TRTCuts_Ar15mm_Xe25um.py
#
# For a special production to evaluate the effect of high
# energy deltas on HIP trigger efficiency.
#########################################################
atlasG4log.info("G4 TRT Config: Setting TRT cut")
from AthenaCommon.CfgGetter import getService
import AthenaCommon.SystemOfUnits as Units
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].ElectronCut=0.025*Units.mm
getService('DetectorGeometrySvc').RegionCreators['TRTPhysicsRegionTool'].PositronCut=0.025*Units.mm
getService('DetectorGeometrySvc').RegionCreators['TRT_ArPhysicsRegionTool'].ElectronCut=15.*Units.mm
getService('DetectorGeometrySvc').RegionCreators['TRT_ArPhysicsRegionTool'].PositronCut=15.*Units.mm
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