Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 globalTrackingRegionFromBeamSpotFixedZ = cms.EDProducer('GlobalTrackingRegionFromBeamSpotEDProducer',
0004   RegionPSet = cms.PSet(
0005     precise = cms.bool(True),
0006     useMultipleScattering = cms.bool(False),
0007     nSigmaZ = cms.double(0),
0008     originHalfLength = cms.double(21.2),
0009     originRadius = cms.double(0.2),
0010     ptMin = cms.double(0.9),
0011     beamSpot = cms.InputTag('offlineBeamSpot')
0012   ),
0013   mightGet = cms.optional.untracked.vstring
0014 )