Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ecal_digi_parameters = cms.PSet(
0004     EBdigiCollectionPh2 = cms.string(''),
0005     UseLCcorrection  = cms.untracked.bool(True),
0006 
0007     #NOTE: Phase2 noise correlation matrices with fake numbers to simply test the code flow.
0008 
0009     EBCorrNoiseMatrixG10Ph2 = cms.vdouble (
0010     1.00000, 0.71073, 0.55721, 0.46089, 0.40449,
0011     0.35931, 0.33924, 0.32439, 0.31581, 0.30481, 0.40449,0.40449,0.40449,0.40449,0.40449,0.40449) ,
0012 
0013     EBCorrNoiseMatrixG01Ph2 = cms.vdouble (
0014     1.00000, 0.73354, 0.64442, 0.58851, 0.55425,
0015     0.53082, 0.51916, 0.51097, 0.50732, 0.50409, 0.40449,0.40449,0.40449,0.40449,0.40449,0.40449) ,
0016 
0017     EcalPreMixStage1 = cms.bool(False),
0018     EcalPreMixStage2 = cms.bool(False)
0019     
0020 )
0021 
0022 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
0023 premix_stage1.toModify(ecal_digi_parameters, EcalPreMixStage1 = True)