CMS 3D CMS Logo

single10GeVNeutrino_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # generate single nu_mu events
4 generator = cms.EDProducer("FlatRandomPtGunProducer",
5  PGunParameters = cms.PSet(
6  # you can request more than 1 particle
7  PartID = cms.vint32(14),
8  MinEta = cms.double(-4.0),
9  MaxEta = cms.double( 4.0),
10  MinPhi = cms.double(-3.14159265359),
11  MaxPhi = cms.double( 3.14159265359),
12  MinPt = cms.double( 9.99),
13  MaxPt = cms.double(10.01)
14  ),
15  AddAntiParticle = cms.bool(False),
16  Verbosity = cms.untracked.int32(0),
17  firstRun = cms.untracked.uint32(1)
18 )