Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-24 22:51:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def RecoTauPiZeroProducer(*args, **kwargs):
0004   mod = cms.EDProducer('RecoTauPiZeroProducer',
0005     massHypothesis = cms.double(0.136),
0006     ranking = cms.VPSet(
0007       cms.PSet(
0008         name = cms.string(''),
0009         plugin = cms.string(''),
0010         selection = cms.string(''),
0011         selectionFailValue = cms.double(1000),
0012         selectionPassFunction = cms.string('')
0013       )
0014     ),
0015     verbosity = cms.int32(0),
0016     maxJetAbsEta = cms.double(2.5),
0017     outputSelection = cms.string('pt > 0'),
0018     minJetPt = cms.double(14),
0019     jetSrc = cms.InputTag('ak4PFJets'),
0020     builders = cms.VPSet(
0021       cms.PSet(
0022         name = cms.string(''),
0023         plugin = cms.string(''),
0024         verbosity = cms.int32(0),
0025         qualityCuts = cms.PSet()
0026       )
0027     ),
0028     mightGet = cms.optional.untracked.vstring
0029   )
0030   for a in args:
0031     mod.update_(a)
0032   mod.update_(kwargs)
0033   return mod