CMS 3D CMS Logo

ecalDigiParameters_Ph2_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ecal_digi_parameters = cms.PSet(
4  EBdigiCollectionPh2 = cms.string(''),
5  UseLCcorrection = cms.untracked.bool(True),
6 
7  #NOTE: Phase2 noise correlation matrices with fake numbers to simply test the code flow.
8 
9  EBCorrNoiseMatrixG10Ph2 = cms.vdouble (
10  1.00000, 0.71073, 0.55721, 0.46089, 0.40449,
11  0.35931, 0.33924, 0.32439, 0.31581, 0.30481, 0.40449,0.40449,0.40449,0.40449,0.40449,0.40449) ,
12 
13  EBCorrNoiseMatrixG01Ph2 = cms.vdouble (
14  1.00000, 0.73354, 0.64442, 0.58851, 0.55425,
15  0.53082, 0.51916, 0.51097, 0.50732, 0.50409, 0.40449,0.40449,0.40449,0.40449,0.40449,0.40449) ,
16 
17  EcalPreMixStage1 = cms.bool(False),
18  EcalPreMixStage2 = cms.bool(False)
19 
20 )
21 
22 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
23 premix_stage1.toModify(ecal_digi_parameters, EcalPreMixStage1 = True)