Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 
0005 process.maxEvents = cms.untracked.PSet(
0006     input = cms.untracked.int32(-1)
0007 )
0008 
0009 # Message Logger
0010 process.MessageLogger = cms.Service("MessageLogger",
0011     cerr = cms.untracked.PSet(
0012         enable = cms.untracked.bool(False)
0013     ),
0014     cout = cms.untracked.PSet(
0015         enable = cms.untracked.bool(True)
0016     )
0017 )
0018 
0019 process.load("L1TriggerConfig.L1GeometryProducers.l1CaloGeometry_cfi")
0020 process.load("L1TriggerConfig.L1GeometryProducers.l1CaloGeomRecordSource_cff")
0021 
0022 process.load("L1Trigger.GlobalMuonTrigger.gmtDigis_cff")
0023 
0024 process.load("L1Trigger.GlobalMuonTrigger.gmttree_cfi")
0025 process.gmttree.GMTInputTag = "gmtDigis"
0026     
0027 process.source = cms.Source("L1MuGMTHWFileReader",
0028     fileNames = cms.untracked.vstring("file:gmt_testfile.h4mu.dat")
0029 )
0030 
0031 process.gmtDigis.DTCandidates = "source:DT"
0032 process.gmtDigis.CSCCandidates = 'source:CSC'
0033 process.gmtDigis.RPCbCandidates = 'source:RPCb'
0034 process.gmtDigis.RPCfCandidates = 'source:RPCf'
0035 process.gmtDigis.MipIsoData = 'source'
0036 process.gmtDigis.Debug = 0
0037 process.gmtDigis.BX_min = -1
0038 process.gmtDigis.BX_max = 1
0039 process.gmtDigis.BX_min_readout = -1
0040 process.gmtDigis.BX_max_readout = 1
0041 
0042 process.p = cms.Path(process.gmtDigis * process.gmttree)