Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # process
0004 process = cms.Process('GMTParameterGlobalTagTest')
0005 
0006 # number of events and source
0007 process.maxEvents = cms.untracked.PSet(
0008     input = cms.untracked.int32(1)
0009 )
0010 
0011 process.source = cms.Source('EmptySource')
0012 
0013 # load and configure modules via Global Tag
0014 # https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideFrontierConditions
0015 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0016  
0017 process.GlobalTag.globaltag = 'STARTUP_31X::All'
0018 
0019 process.gmtDigis = cms.EDProducer("L1MuGlobalMuonTrigger",
0020     Debug = cms.untracked.int32(9),
0021     BX_min = cms.int32(-1),
0022     BX_max = cms.int32(1),
0023     BX_min_readout = cms.int32(-1),
0024     BX_max_readout = cms.int32(1),
0025     DTCandidates = cms.InputTag("none"),
0026     RPCbCandidates = cms.InputTag("none"),
0027     CSCCandidates = cms.InputTag("none"),
0028     RPCfCandidates = cms.InputTag("none"),
0029     MipIsoData = cms.InputTag("none"),
0030     WriteLUTsAndRegs = cms.untracked.bool(False)
0031 )
0032 
0033 process.p = cms.Path(process.gmtDigis)
0034 
0035 process.MessageLogger = cms.Service("MessageLogger",
0036     cerr = cms.untracked.PSet(
0037         enable = cms.untracked.bool(False)
0038     ),
0039     cout = cms.untracked.PSet(
0040         enable = cms.untracked.bool(True)
0041     )
0042 )