CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TauSpinner_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TauSpinnerReco = cms.EDProducer( "TauSpinnerCMS",
4  isReco = cms.bool(True),
5  isTauolaConfigured = cms.bool(False),
6  isLHPDFConfigured = cms.bool(False),
7  LHAPDFname = cms.untracked.string('MSTW2008nnlo90cl.LHgrid'),
8  CMSEnergy = cms.double(8000.0),
9  gensrc = cms.InputTag('genParticles')
10  )
11 
12 TauSpinnerGen = cms.EDProducer( "TauSpinnerCMS",
13  isReco = cms.bool(False),
14  isTauolaConfigured = cms.bool(True),
15  isLHPDFConfigured = cms.bool(True),
16  LHAPDFname = cms.untracked.string('MSTW2008nnlo90cl.LHgrid'),
17  CMSEnergy = cms.double(8000.0),
18  gensrc = cms.InputTag('generatorSmeared'),
19  )