File indexing completed on 2024-04-06 12:31:04
0001 import FWCore.ParameterSet.Config as cms
0002
0003 import copy
0004 from SimG4Core.Application.g4SimHits_cfi import *
0005
0006 trackingMaterialProducer = copy.deepcopy(g4SimHits)
0007 trackingMaterialProducer.Generator.HepMCProductLabel = 'generatorSmeared'
0008 trackingMaterialProducer.Physics.type = 'SimG4Core/Physics/DummyPhysics'
0009 trackingMaterialProducer.Physics.DummyEMPhysics = True
0010 trackingMaterialProducer.Physics.CutsPerRegion = False
0011 trackingMaterialProducer.UseMagneticField = False
0012 trackingMaterialProducer.Watchers = cms.VPSet(cms.PSet(
0013 TrackingMaterialProducer = cms.PSet(
0014 PrimaryTracksOnly = cms.bool(True),
0015
0016
0017 txtOutFile = cms.untracked.string('VolumesZPosition.txt'),
0018 hgcalzfront = cms.double(3190.5),
0019 SelectedVolumes = cms.vstring('BEAM',
0020 'Tracker')
0021 ),
0022 type = cms.string('TrackingMaterialProducer')
0023 ))