CMS 3D CMS Logo

PythiaTauGun_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 source = cms.Source(
00004     "PythiaSource",
00005     pythiaVerbosity = cms.untracked.bool(False),
00006     #  possibility to run single or double back-to-back particles with PYTHIA
00007     # if ParticleID = 0, run PYTHIA
00008     ParticleID = cms.untracked.int32(-15),
00009     DoubleParticle = cms.untracked.bool(True),
00010     Ptmin = cms.untracked.double(20.0),
00011     Ptmax = cms.untracked.double(420.0),
00012 #    Emin = cms.untracked.double(10.0),
00013 #    Emax = cms.untracked.double(10.0),
00014     Etamin = cms.untracked.double(0.0),
00015     Etamax = cms.untracked.double(2.4),
00016     Phimin = cms.untracked.double(0.0),
00017     Phimax = cms.untracked.double(360.0),
00018     PythiaParameters = cms.PSet(
00019         # This is a vector of ParameterSet names to be read, in this order
00020         parameterSets = cms.vstring(
00021             'pythiaTauJets'
00022         ),
00023 
00024         # Tau jets only
00025         pythiaTauJets = cms.vstring(
00026             'MDME(89,1)=0      ! no tau->electron', 
00027             'MDME(90,1)=0      ! no tau->muon'
00028         )
00029         
00030     )
00031     
00032 )
00033 
00034 

Generated on Tue Jun 9 17:35:04 2009 for CMSSW by  doxygen 1.5.4