Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from IOMC.EventVertexGenerators.VtxSmearedParameters_cfi import *
0004 from SimG4CMS.HcalTestBeam.TBDirectionParameters_cfi import *
0005 
0006 VtxSmeared = cms.EDProducer("BeamProfileVtxGenerator",
0007                             common_beam_direction_parameters,
0008                             VtxSmearedCommon,
0009                             BeamMeanX       = cms.double(0.0),
0010                             BeamMeanY       = cms.double(0.0),
0011                             BeamSigmaX      = cms.double(0.0001),
0012                             BeamSigmaY      = cms.double(0.0001),
0013                             Psi             = cms.double(999.9),
0014                             GaussianProfile = cms.bool(False),
0015                             BinX            = cms.int32(50),
0016                             BinY            = cms.int32(50),
0017                             File            = cms.string('beam.profile'),
0018                             UseFile         = cms.bool(False),
0019                             TimeOffset      = cms.double(0.)
0020                             )