Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:03:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Trigger Primitive Producer
0004 from SimCalorimetry.EcalTrigPrimProducers.ecalTriggerPrimitiveDigis_cfi import *
0005 # esmodule creating  all the records
0006 EcalTrigPrimESProducer = cms.ESProducer("EcalTrigPrimESProducer",
0007     DatabaseFile = cms.untracked.string('TPG_startup.txt.gz')
0008 )
0009 
0010 # corresponding es_sources
0011 tpparams = cms.ESSource("EmptyESSource",
0012     recordName = cms.string('EcalTPGLinearizationConstRcd'),
0013     iovIsRunNotTime = cms.bool(True),
0014     firstValid = cms.vuint32(1)
0015 )
0016 
0017 tpparams2 = cms.ESSource("EmptyESSource",
0018     recordName = cms.string('EcalTPGPedestalsRcd'),
0019     iovIsRunNotTime = cms.bool(True),
0020     firstValid = cms.vuint32(1)
0021 )
0022 
0023 tpparams3 = cms.ESSource("EmptyESSource",
0024     recordName = cms.string('EcalTPGSlidingWindowRcd'),
0025     iovIsRunNotTime = cms.bool(True),
0026     firstValid = cms.vuint32(1)
0027 )
0028 
0029 tpparams4 = cms.ESSource("EmptyESSource",
0030     recordName = cms.string('EcalTPGWeightIdMapRcd'),
0031     iovIsRunNotTime = cms.bool(True),
0032     firstValid = cms.vuint32(1)
0033 )
0034 
0035 tpparams5 = cms.ESSource("EmptyESSource",
0036     recordName = cms.string('EcalTPGWeightGroupRcd'),
0037     iovIsRunNotTime = cms.bool(True),
0038     firstValid = cms.vuint32(1)
0039 )
0040 
0041 tpparams6 = cms.ESSource("EmptyESSource",
0042     recordName = cms.string('EcalTPGLutGroupRcd'),
0043     iovIsRunNotTime = cms.bool(True),
0044     firstValid = cms.vuint32(1)
0045 )
0046 
0047 tpparams7 = cms.ESSource("EmptyESSource",
0048     recordName = cms.string('EcalTPGLutIdMapRcd'),
0049     iovIsRunNotTime = cms.bool(True),
0050     firstValid = cms.vuint32(1)
0051 )
0052 
0053 tpparams8 = cms.ESSource("EmptyESSource",
0054     recordName = cms.string('EcalTPGFineGrainEBIdMapRcd'),
0055     iovIsRunNotTime = cms.bool(True),
0056     firstValid = cms.vuint32(1)
0057 )
0058 
0059 tpparams9 = cms.ESSource("EmptyESSource",
0060     recordName = cms.string('EcalTPGFineGrainEBGroupRcd'),
0061     iovIsRunNotTime = cms.bool(True),
0062     firstValid = cms.vuint32(1)
0063 )
0064 
0065 tpparams10 = cms.ESSource("EmptyESSource",
0066     recordName = cms.string('EcalTPGFineGrainStripEERcd'),
0067     iovIsRunNotTime = cms.bool(True),
0068     firstValid = cms.vuint32(1)
0069 )
0070 
0071 tpparams11 = cms.ESSource("EmptyESSource",
0072     recordName = cms.string('EcalTPGFineGrainTowerEERcd'),
0073     iovIsRunNotTime = cms.bool(True),
0074     firstValid = cms.vuint32(1)
0075 )
0076 
0077 tpparams12 = cms.ESSource("EmptyESSource",
0078     recordName = cms.string('EcalTPGPhysicsConstRcd'),
0079     iovIsRunNotTime = cms.bool(True),
0080     firstValid = cms.vuint32(1)
0081 )
0082 
0083 tpparams13 = cms.ESSource("EmptyESSource",
0084     recordName = cms.string('EcalTPGCrystalStatusRcd'),
0085     iovIsRunNotTime = cms.bool(True),
0086     firstValid = cms.vuint32(1)
0087 )
0088 
0089 tpparams14 = cms.ESSource("EmptyESSource",
0090     recordName = cms.string('EcalTPGTowerStatusRcd'),
0091     iovIsRunNotTime = cms.bool(True),
0092     firstValid = cms.vuint32(1)
0093 )
0094 
0095 simEcalTriggerPrimitiveDigis.BarrelOnly = True
0096 
0097