Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 generator = cms.EDProducer("FlatRandomPtAndDxyGunProducer",
0004     PGunParameters = cms.PSet(
0005         PartID = cms.vint32(-13),
0006         MinPt  = cms.double(2.00),
0007         MaxPt  = cms.double(10.00),
0008         MinEta = cms.double(-2.9),
0009         MaxEta = cms.double(2.9),
0010         MinPhi = cms.double(-3.14159265359),
0011         MaxPhi = cms.double(3.14159265359),
0012         LxyMax = cms.double(1000.0),#make sure most muons generated before Muon system, Gauss distribution
0013         LzMax = cms.double(1000.0),#make sure most muons generated before Muon system, Gauss distribution
0014     ConeRadius = cms.double(1000.0),
0015     ConeH = cms.double(3000.0),
0016     DistanceToAPEX = cms.double(100.0),
0017         dxyMin = cms.double(0.0),
0018         dxyMax = cms.double(1000.0) # in mm
0019     ),
0020     Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
0021     psethack = cms.string('displaced muon'),
0022     AddAntiParticle = cms.bool(True),
0023     firstRun = cms.untracked.uint32(1)
0024 )