Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # EOY 2018 MC corrections
0004 multPhiCorr_EOYMC2018 = cms.VPSet(
0005     cms.PSet(
0006       name=cms.string("EOYMC2018"),
0007       type=cms.int32(0),
0008       varType=cms.int32(3),
0009       etaMin=cms.double(-9.9),
0010       etaMax=cms.double(9.9),
0011       fx=cms.string("((x*[0])+[1])"),
0012       px=cms.vdouble(0.296713,-0.141506),
0013       fy=cms.string("((x*[0])+[1])"),
0014       py=cms.vdouble(0.115685,0.0128193),
0015     ),
0016 )
0017 
0018 # EOY 2017 MC corrections without METv2 fix
0019 multPhiCorr_EOYMC2017 = cms.VPSet(
0020     cms.PSet(
0021       name=cms.string("EOYMC2017"),
0022       type=cms.int32(0),
0023       varType=cms.int32(3),
0024       etaMin=cms.double(-9.9),
0025       etaMax=cms.double(9.9),
0026       fx=cms.string("((x*[0])+[1])"),
0027       px=cms.vdouble(-0.217714,0.493361),
0028       fy=cms.string("((x*[0])+[1])"),
0029       py=cms.vdouble(0.177058,-0.336648),
0030     ),
0031 )
0032 
0033 # EOY 2017 MC corrections with METv2 fix
0034 multPhiCorr_EOYMC2017_METv2 = cms.VPSet(
0035     cms.PSet(
0036       name=cms.string("EOYMC2017_METv2"),
0037       type=cms.int32(0),
0038       varType=cms.int32(3),
0039       etaMin=cms.double(-9.9),
0040       etaMax=cms.double(9.9),
0041       fx=cms.string("((x*[0])+[1])"),
0042       px=cms.vdouble(-0.182569,0.276542),
0043       fy=cms.string("((x*[0])+[1])"),
0044       py=cms.vdouble(0.155652,-0.417633),
0045     ),
0046 )
0047 
0048 # EOY 2016 MC corrections
0049 multPhiCorr_EOYMC2016 = cms.VPSet(
0050     cms.PSet(
0051       name=cms.string("EOYMC2016"),
0052       type=cms.int32(0),
0053       varType=cms.int32(3),
0054       etaMin=cms.double(-9.9),
0055       etaMax=cms.double(9.9),
0056       fx=cms.string("((x*[0])+[1])"),
0057       px=cms.vdouble(-0.195191,-0.170948),
0058       fy=cms.string("((x*[0])+[1])"),
0059       py=cms.vdouble(-0.0311891,0.787627),
0060     ),
0061 )