Skip to content

Commit c26cefb

Browse files
Merge pull request #264 from cms-analysis/merge_VBF_scaling_fix
Linear -> quadratic in kappa_VBF
2 parents 87c8128 + ef5dac1 commit c26cefb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/SMHiggsBuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def makeScaling(self,what, Cb='Cb', Ctop='Ctop', CW='CW', CZ='CZ', Ctau='Ctau',
5454
scalingName = 'Scaling_'+what+'_'+sqrts
5555
# print 'Building '+ scalingName
5656
rooExpr = 'expr::%(scalingName)s(\
57-
"(@0+ @1 * @2 )/(1+@2)",\
57+
"(@0*@0 + @1*@1 * @2 )/(1+@2)",\
5858
%(CW)s, %(CZ)s,\
5959
%(rooName)s\
6060
)'%locals()

0 commit comments

Comments
 (0)