File indexing completed on 2024-04-06 11:58:24
0001
0002
0003
0004
0005
0006
0007
0008 import FWCore.ParameterSet.Config as cms
0009
0010 process = cms.Process("TEST")
0011 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0012 loadAll = cms.bool(True),
0013
0014
0015 timetype = cms.string('runnumber'),
0016 toGet = cms.VPSet(cms.PSet(
0017 record = cms.string('CSCL1TPParametersRcd'),
0018 tag = cms.string('CSCL1TPParameters')
0019 )),
0020 connect = cms.string('oracle://cms_orcoff_int2r/CMS_COND_CSC'),
0021 DBParameters = cms.PSet(
0022 authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb'),
0023 authenticationMethod = cms.untracked.uint32(1)
0024 )
0025 )
0026
0027 process.maxEvents = cms.untracked.PSet(
0028 input = cms.untracked.int32(1)
0029 )
0030 process.source = cms.Source("EmptySource")
0031
0032 process.prod = cms.EDAnalyzer("CSCL1TPParametersReadAnalyzer")
0033
0034 process.output = cms.OutputModule("AsciiOutputModule")
0035
0036 process.p = cms.Path(process.prod)
0037 process.ep = cms.EndPath(process.output)
0038
0039