CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Configuration/Generator/python/SingleNuE10_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 generator = cms.EDProducer("FlatRandomEGunProducer",
00004     PGunParameters = cms.PSet(
00005         PartID = cms.vint32(12),
00006         MaxEta = cms.double(2.5),
00007         MaxPhi = cms.double(3.14159265359),
00008         MinEta = cms.double(-2.5),
00009         MinE = cms.double(9.99),
00010         MinPhi = cms.double(-3.14159265359), ## in radians
00011 
00012         MaxE = cms.double(10.01)
00013     ),
00014     Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
00015 
00016     psethack = cms.string('single Nu E 10'),
00017     AddAntiParticle = cms.bool(False),
00018     firstRun = cms.untracked.uint32(1)
00019 )