Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) )
0005 process.source = cms.Source("EmptySource")
0006 
0007 process.dummy = cms.ESSource("EmptyESSource",
0008     recordName = cms.string("CSCIndexerRecord"),
0009     firstValid = cms.vuint32(1),
0010     iovIsRunNotTime = cms.bool(True)
0011 )
0012 
0013 ##process.load("CalibMuon.CSCCalibration.CSCIndexer_cfi")
0014 ## The above cfi gives rise to the following line:
0015 ##process.CSCIndexerESProducer = cms.ESProducer("CSCIndexerESProducer", AlgoName = cms.string("CSCIndexerPostls1") )
0016 process.CSCIndexerESProducer = cms.ESProducer("CSCIndexerESProducer", AlgoName = cms.string("CSCIndexerStartup") )
0017 
0018 process.analyze = cms.EDAnalyzer("CSCIndexerAnalyzer")
0019 
0020 process.test = cms.Path(process.analyze)
0021