File indexing completed on 2024-04-06 12:08:52
0001
0002
0003
0004 import FWCore.ParameterSet.Config as cms
0005 from Configuration.AlCa.GlobalTag import GlobalTag
0006
0007 process = cms.Process('SPYDISPLAY')
0008
0009 process.source = cms.Source(
0010 "PoolSource",
0011 fileNames = cms.untracked.vstring(
0012
0013 'file:SpyMatchedEvents298270_TEST.root'
0014 )
0015 )
0016
0017 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1))
0018
0019
0020 process.load("DQM.SiStripCommon.MessageLogger_cfi")
0021
0022
0023
0024
0025 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0026 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data', '')
0027 process.load("Configuration.Geometry.GeometryRecoDB_cff")
0028
0029
0030
0031 process.load('EventFilter.SiStripRawToDigi.SiStripDigis_cfi')
0032
0033
0034
0035
0036
0037
0038 process.load('DQM.SiStripMonitorHardware.SiStripSpyDisplay_cfi')
0039
0040
0041 process.SiStripSpyDisplay.detIDs = cms.vuint32(
0042 470079220, 470083621, 470083622, 470083625, 470083626, 470083653, 470083654, 470083657, 470083658, 470083684, 470083688, 470083692, 470083716, 470083720, 470083724, 470083728, 470083780, 470083784, 470083788,
0043 369124565, 369124566, 369124569, 369124570, 369124573, 369124574, 369125557, 369125558, 369125561, 369125562, 369125565, 369125566, 369125573, 369125574, 369125577, 369125578, 369125581, 369125582, 369125589,
0044 402672433, 402672434, 402672265, 402672266, 402672269, 402672270, 402672273, 402672274, 402672261, 402672262, 402672301, 402672302, 402672305, 402672306, 402672901, 402672902, 402672905, 402672906, 402672945,
0045 436298448, 436298452, 436298456, 436298404, 436298408, 436298412, 436298416, 436298420, 436298424, 436298372, 436298376, 436298380, 436298384, 436298388, 436298392, 436298916, 436298920, 436298924, 436298928,
0046 )
0047 process.SiStripSpyDisplay.InputScopeModeRawDigiLabel = cms.InputTag("SiStripSpyEventMatcher","SpyScope")
0048 process.SiStripSpyDisplay.InputPayloadRawDigiLabel = cms.InputTag("SiStripSpyEventMatcher", "SpyPayload")
0049 process.SiStripSpyDisplay.InputReorderedPayloadRawDigiLabel = cms.InputTag("SiStripSpyEventMatcher", "SpyReordered")
0050 process.SiStripSpyDisplay.InputReorderedModuleRawDigiLabel = cms.InputTag("SiStripSpyEventMatcher", "SpyVirginRaw")
0051
0052
0053
0054
0055
0056
0057
0058 process.SiStripSpyDisplay.InputCompVirginRawDigiLabel = cms.InputTag("siStripDigis","VirginRaw")
0059 process.SiStripSpyDisplay.OutputFolderName = cms.string("Display")
0060
0061
0062 process.p = cms.Path(
0063 process.siStripDigis*
0064 process.SiStripSpyDisplay
0065 )
0066
0067
0068 process.TFileService = cms.Service(
0069 "TFileService",
0070 fileName = cms.string('SpyDisplay298270_Test.root')
0071 )
0072