Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:46:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltMuonL1Filter = cms.EDFilter('HLTMuonL1Filter',
0004   saveTags = cms.bool(True),
0005   CandTag = cms.InputTag('hltL1extraParticles'),
0006   PreviousCandTag = cms.InputTag(''),
0007   MaxEta = cms.double(2.5),
0008   MinPt = cms.double(0),
0009   MinN = cms.int32(1),
0010   ExcludeSingleSegmentCSC = cms.bool(False),
0011   CSCTFtag = cms.InputTag('csctfDigis'),
0012   SelectQualities = cms.vint32(),
0013   mightGet = cms.optional.untracked.vstring
0014 )