Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-10 02:58:57

0001 import FWCore.ParameterSet.Config as cms
0002 from PhysicsTools.NanoAOD.tauSpinnerTableProducer_cfi import tauSpinnerTableProducer
0003 
0004 tauSpinnerTable = tauSpinnerTableProducer.clone(
0005     src = 'prunedGenParticles',
0006     name = 'TauSpinner',
0007     theta = [0, 0.25, 0.5, -0.25, 0.375],
0008     defaultWeight = 1
0009 )
0010 
0011 tauSpinnerTableTask = cms.Task(tauSpinnerTable)