CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
reproc2011_2012_cff.py
Go to the documentation of this file.
2 
3 def customiseG4(process):
4 
5  process.g4SimHits.Physics.type = cms.string('SimG4Core/Physics/QGSP_FTFP_BERT_EML_New')
6 
7  # extended geometric acceptance (full CASTOR acceptance)
8 
9  process.g4SimHits.Generator.MinEtaCut = cms.double(-6.7)
10  process.g4SimHits.Generator.MaxEtaCut = cms.double(6.7)
11 
12  # use HF shower library instead of GFlash parameterization
13 
14  process.g4SimHits.HCalSD.UseShowerLibrary = cms.bool(True)
15  process.g4SimHits.HCalSD.UseParametrize = cms.bool(False)
16  process.g4SimHits.HCalSD.UsePMTHits = cms.bool(False)
17  process.g4SimHits.HCalSD.UseFibreBundleHits = cms.bool(False)
18 
19  return(process)