Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 AlignmentParameterStore = cms.PSet(
0004     ParameterStore = cms.PSet(
0005         ExtendedCorrelationsConfig = cms.PSet(
0006             CutValue = cms.double(0.95),
0007             Weight = cms.double(0.5),
0008             MaxUpdates = cms.int32(5000)
0009         ),
0010         UseExtendedCorrelations = cms.untracked.bool(False),
0011         TypeOfConstraints = cms.string('hierarchy'),
0012     )
0013 )
0014