CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoTauTag/TauTagTools/python/DiTaus_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Back to back hadronic taus
00004 source = cms.Source("PythiaSource",
00005     Phimin = cms.untracked.double(0.0),
00006     maxEventsToPrint = cms.untracked.int32(5),
00007     pythiaPylistVerbosity = cms.untracked.int32(1),
00008     #  possibility to run single or double back-to-back particles with PYTHIA
00009     # if ParticleID = 0, run PYTHIA
00010     ParticleID = cms.untracked.int32(15),
00011     pythiaHepMCVerbosity = cms.untracked.bool(True),
00012     Etamin = cms.untracked.double(0.0),
00013     DoubleParticle = cms.untracked.bool(True),
00014     Phimax = cms.untracked.double(360.0),
00015     Ptmin = cms.untracked.double(15.0),
00016     Ptmax = cms.untracked.double(60.0),
00017     Etamax = cms.untracked.double(2.5),
00018     PythiaParameters = cms.PSet(
00019 #        process.pythiaUESettingsBlock,
00020         tauHadronicalOnly = cms.vstring('MDME( 89, 1) = 0    !no tau decay into electron', 'MDME( 90,1) = 0 !no tau decay into muon'),
00021         # This is a vector of ParameterSet names to be read, in this order
00022         parameterSets = cms.vstring('tauHadronicalOnly')
00023     )
00024 )
00025