CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Validation/RecoParticleFlow/python/source_diJets_cfi.py

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