File indexing completed on 2024-04-06 12:30:24
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from SimG4Core.Application.g4SimHits_cfi import *
0004
0005 g4SimHits.Physics.type = 'SimG4Core/Physics/GFlash'
0006 g4SimHits.Physics.GFlash = cms.PSet(
0007 GflashHadronPhysics = cms.string('QGSP_FTFP_BERT'),
0008 GflashEMShowerModel = cms.bool(True),
0009 energyScaleEB = cms.double(1.032),
0010 energyScaleEE = cms.double(1.024),
0011 GflashHadronShowerModel = cms.bool(True),
0012 GflashHcalOuter = cms.bool(True),
0013 GflashExportToFastSim = cms.bool(False),
0014 GflashHistogram = cms.bool(False),
0015 GflashHistogramName = cms.string('gflash_histogram.root'),
0016 Verbosity = cms.untracked.int32(0),
0017 bField = cms.double(3.8),
0018 watcherOn = cms.bool(False),
0019 tuning_pList = cms.vdouble()
0020 )