Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:44:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("ICALIB")
0004 process.load("DQMServices.Core.DQM_cfg")
0005 
0006 process.MessageLogger = cms.Service("MessageLogger",
0007     debugModules = cms.untracked.vstring('*'),
0008     cout = cms.untracked.PSet(
0009         threshold = cms.untracked.string('INFO')
0010     ),
0011     destinations = cms.untracked.vstring('cout')
0012 )
0013 
0014 process.source = cms.Source("EmptyIOVSource",
0015     firstValue = cms.uint64(insertRun),
0016     lastValue = cms.uint64(insertRun),
0017     timetype = cms.string('runnumber'),
0018     interval = cms.uint64(1)
0019 )
0020 
0021 process.maxEvents = cms.untracked.PSet(
0022     input = cms.untracked.int32(1)
0023 )
0024 process.b = cms.ESSource("PoolDBESSource",
0025     BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0026     DBParameters = cms.PSet(
0027         authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0028     ),
0029     timetype = cms.string('runnumber'),
0030     toGet = cms.VPSet(cms.PSet(
0031         record = cms.string('SiStripFedCablingRcd'),
0032         tag = cms.string('SiStripFedCabling_GR_21X_v2_hlt')
0033     )),
0034     connect = cms.string('oracle://cms_orcoff_prod/CMS_COND_21X_STRIP')
0035 )
0036 
0037 process.load("CalibTracker.SiStripCommon.TkDetMapESProducer_cfi")
0038 # load TrackerTopology (needed for TkDetMap and TkHistoMap)
0039 process.load("Configuration.Geometry.GeometryExtended2017_cff")
0040 process.load("Geometry.TrackerGeometryBuilder.trackerParameters_cfi")
0041 process.trackerTopology = cms.ESProducer("TrackerTopologyEP")
0042 
0043 process.sistripconn = cms.ESProducer("SiStripConnectivity")
0044 
0045 process.prod = cms.EDAnalyzer("SiStripDQMProfileToTkMapConverter",
0046     TkMapFileName = cms.untracked.string('CabTkMaptest_insertRun.png'),
0047     verbosity = cms.untracked.uint32(0),
0048     rootFilename = cms.untracked.string('insertFile'),
0049     rootDirPath = cms.untracked.string('Run insertRun/SiStrip'),
0050     TkMapDrawOption = cms.untracked.string('Zcol')
0051 )
0052 
0053 process.p = cms.Path(process.prod)
0054 
0055