File indexing completed on 2023-11-06 23:38:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 pfRecoTauDiscriminationAgainstMuon2Container = cms.EDProducer('PFRecoTauDiscriminationAgainstMuon2Container',
0004 maskHitsRPC = cms.vint32(
0005 0,
0006 0,
0007 0,
0008 0
0009 ),
0010 maskMatchesRPC = cms.vint32(
0011 0,
0012 0,
0013 0,
0014 0
0015 ),
0016 maskMatchesCSC = cms.vint32(
0017 1,
0018 0,
0019 0,
0020 0
0021 ),
0022 maskHitsCSC = cms.vint32(
0023 0,
0024 0,
0025 0,
0026 0
0027 ),
0028 PFTauProducer = cms.InputTag('pfRecoTauProducer'),
0029 verbosity = cms.int32(0),
0030 maskMatchesDT = cms.vint32(
0031 0,
0032 0,
0033 0,
0034 0
0035 ),
0036 minPtMatchedMuon = cms.double(5),
0037 dRmuonMatchLimitedToJetArea = cms.bool(False),
0038 Prediscriminants = cms.PSet(
0039 BooleanOperator = cms.string('and'),
0040 leadTrack = cms.PSet(
0041 cut = cms.double(0.5),
0042 Producer = cms.InputTag('pfRecoTauDiscriminationByLeadingTrackFinding')
0043 )
0044 ),
0045 maskHitsDT = cms.vint32(
0046 0,
0047 0,
0048 0,
0049 0
0050 ),
0051 dRmuonMatch = cms.double(0.3),
0052 srcMuons = cms.InputTag('muons'),
0053 IDWPdefinitions = cms.VPSet(
0054 cms.PSet(
0055 HoPMin = cms.double(0.2),
0056 IDname = cms.string('pfRecoTauDiscriminationAgainstMuon2Container'),
0057 discriminatorOption = cms.string('loose'),
0058 doCaloMuonVeto = cms.bool(False),
0059 maxNumberOfHitsLast2Stations = cms.int32(0),
0060 maxNumberOfMatches = cms.int32(0)
0061 )
0062 ),
0063 IDdefinitions = cms.VPSet(
0064 ),
0065 mightGet = cms.optional.untracked.vstring
0066 )