Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def L2TauPixelIsoTagProducer(*args, **kwargs):
0004   mod = cms.EDProducer('L2TauPixelIsoTagProducer',
0005     JetSrc = cms.InputTag('hltL2DiTauCaloJets'),
0006     BeamSpotSrc = cms.InputTag('hltOnlineBeamSpot'),
0007     VertexSrc = cms.InputTag('hltPixelVertices'),
0008     MaxNumberPV = cms.int32(1),
0009     IsoConeMax = cms.double(0.4),
0010     IsoConeMin = cms.double(0.2),
0011     TrackMinPt = cms.double(1.6),
0012     TrackMinNHits = cms.int32(3),
0013     TrackMaxNChi2 = cms.double(100),
0014     TrackPVMaxDZ = cms.double(0.1),
0015     TrackMaxDxy = cms.double(0.2),
0016     TrackSrc = cms.InputTag(''),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod