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  if hasattr(process,'g4SimHits'):
6  process.g4SimHits.Physics.type = cms.string('SimG4Core/Physics/QGSP_FTFP_BERT_EML_New')
7  # use HF shower library instead of GFlash parameterization
8  process.g4SimHits.HCalSD.UseShowerLibrary = cms.bool(True)
9  process.g4SimHits.HCalSD.UseParametrize = cms.bool(False)
10  process.g4SimHits.HCalSD.UsePMTHits = cms.bool(False)
11  process.g4SimHits.HCalSD.UseFibreBundleHits = cms.bool(False)
12 
13 
14  return(process)