Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:54

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