Skip to content

Commit c2205ca

Browse files
author
Cristián H. Pena
committed
Merge branch 'master' of github.com:RazorCMS/RazorEWKSUSYAnalysis
2 parents 0de1b0f + fc3c3b0 commit c2205ca

93 files changed

Lines changed: 4687 additions & 3 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

HggRazor/FitMgg/src/RunTwoFitMgg.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ RooWorkspace* MakeDataCard( TTree* treeData, TTree* treeSignal, TTree* treeSMH,
18941894
ofs << "process\t\t\t\t\t\t0\t\t1\t\t2\n";
18951895
ofs << "rate\t\t\t\t\t\t1\t\t1\t\t1\n";
18961896
ofs << "----------------------------------------------------------------------------------------\n";
1897-
ofs << "CMS_Lumi\t\t\tlnN\t\t1.057\t\t1.057\t\t-\n";
1897+
ofs << "CMS_Lumi\t\t\tlnN\t\t1.026\t\t1.026\t\t-\n";
18981898
ofs << "Photon_Trigger\t\t\tlnN\t\t1.05\t\t1.05\t\t-\n";
18991899
//ofs << "ScaleNorm\t\t\tlnN\t\t-\t\t0.931/1.065\t\t-\n"; //instead allow scale variations to change xsection
19001900
ofs << "PdfNorm\t\t\t\tlnN\t\t-\t\t0.948/1.062\t\t-\n";

HggRazor/SMS-Plotting/app/PlotSMSLimit.cc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,24 @@ int main( int argc, char* argv[] )
7272
TH2F* h2_limit_exp_down = new TH2F("h2_limit_exp_down", "", 15, -25, 725, 15, -25, 725);
7373
*/
7474

75+
//-------------------
76+
//T2bH settings
77+
//-------------------
78+
double maxY = 725;
79+
double maxX = 725;
80+
double minY = -25;
81+
double minX = -25;
82+
double binWidthX = 50.;
83+
double binWidthY = 50.;
84+
int nbinsX = (int)(maxX-minX)/binWidthX;
85+
int nbinsY = (int)(maxY-minY)/binWidthY;
86+
87+
88+
7589
//-------------------
7690
//TChiWH settings
7791
//-------------------
92+
/*
7893
double maxY = 712.5;
7994
double maxX = 712.5;
8095
double minY = -12.5;
@@ -83,6 +98,7 @@ int main( int argc, char* argv[] )
8398
double binWidthY = 25.;
8499
int nbinsX = (int)(maxX-minX)/binWidthX;
85100
int nbinsY = (int)(maxY-minY)/binWidthY;
101+
*/
86102

87103
TH2F* h2_limit = new TH2F("h2_limit", "", nbinsX, minX, maxX, nbinsY, minY, maxY);
88104
TH2F* h2_limit_exp = new TH2F("h2_limit_exp", "", nbinsX, minX, maxX, nbinsY, minY, maxY);

HggRazor/SMS-Plotting/python/sms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def T2bH(self):
4141
self.Ymin = 0
4242
self.Ymax = 400
4343
self.Zmax = 10
44-
self.Zmin = 0.7
44+
self.Zmin = 0.4
4545
# produce sparticle
4646
self.sParticle = "m_{#tilde{b}} [GeV]"
4747
# LSP

HggRazor/SMS-Plotting/python/smsPlotABS.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,8 @@ def DrawLines(self):
346346
#self.OBS['nominal'].Draw("LSAME")
347347

348348
self.EXP['minus'].Draw("LSAME")
349-
self.EXP['nominal'].Draw("CSAME")
349+
self.EXP['nominal'].SetMarkerStyle(20);
350+
self.EXP['nominal'].Draw("LSAME")
350351
self.EXP['plus'].Draw("LSAME")
351352

352353
self.OBS['minus'].Draw("CSAME")

HggRazor/SMS-Plotting/src/AssortedFunctions.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ void GetLimit(Limit &limit, std::string fname, float ssFactor )
3838
limit.xsecLExpUp = GetCrossSectionLimit( limit.q16, limit.msb);
3939
limit.xsecLExpDown = GetCrossSectionLimit( limit.q84, limit.msb);
4040
};
41+
4142
std::pair<float, float> GetMasses(std::string fname)
4243
{
4344
int low = fname.find("mSbottom-") + 9;
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
imax 1 number of bins
2+
jmax 2 number of processes minus 1
3+
kmax * number of nuisance parameters
4+
----------------------------------------------------------------------------------------
5+
shapes Bkg bin0 HggRazorWorkspace_bin0.root combineWS:singleExp_Bkg_bin0_sExp
6+
shapes SMH bin0 HggRazorWorkspace_bin0.root combineWS:SMH_bin0_DCB
7+
shapes signal bin0 HggRazorWorkspace_bin0.root combineWS:signal_bin0_DCB
8+
shapes data_obs bin0 HggRazorWorkspace_bin0.root combineWS:data_bin0
9+
----------------------------------------------------------------------------------------
10+
bin bin0
11+
observation -1.0
12+
----------------------------------------------------------------------------------------
13+
bin bin0 bin0 bin0
14+
process signal SMH Bkg
15+
process 0 1 2
16+
rate 1 1 1
17+
----------------------------------------------------------------------------------------
18+
CMS_Lumi lnN 1.026 1.026 -
19+
Photon_Trigger lnN 1.05 1.05 -
20+
PdfNorm lnN - 0.948/1.062 -
21+
SMH_JES lnN - 0.990552/1.04556 -
22+
SMH_facScale_bin0 lnN - 1.01593 -
23+
SMH_renScale_bin0 lnN - 1.09639 -
24+
SMH_facRenScale_bin0 lnN - 1.11432 -
25+
SMH_pdf0 lnN - 1.00136 -
26+
SMH_pdf1 lnN - 1.00041 -
27+
SMH_pdf2 lnN - 1.0003 -
28+
SMH_pdf3 lnN - 1.00085 -
29+
SMH_pdf4 lnN - 1.00073 -
30+
SMH_pdf5 lnN - 1.00118 -
31+
SMH_pdf6 lnN - 1.00055 -
32+
SMH_pdf7 lnN - 1.00136 -
33+
SMH_pdf8 lnN - 1.00062 -
34+
SMH_pdf9 lnN - 1.00116 -
35+
SMH_pdf10 lnN - 1.00019 -
36+
SMH_pdf11 lnN - 1.00049 -
37+
SMH_pdf12 lnN - 1.00423 -
38+
SMH_pdf13 lnN - 1.00177 -
39+
SMH_pdf14 lnN - 1.00089 -
40+
SMH_pdf15 lnN - 1.00249 -
41+
SMH_pdf16 lnN - 1.00034 -
42+
SMH_pdf17 lnN - 1.00028 -
43+
SMH_pdf18 lnN - 1.00298 -
44+
SMH_pdf19 lnN - 1.00144 -
45+
SMH_pdf20 lnN - 1.0008 -
46+
SMH_pdf21 lnN - 1.00133 -
47+
SMH_pdf22 lnN - 1.00125 -
48+
SMH_pdf23 lnN - 1.00087 -
49+
SMH_pdf24 lnN - 1.00178 -
50+
SMH_pdf25 lnN - 1.00027 -
51+
SMH_pdf26 lnN - 1.00041 -
52+
SMH_pdf27 lnN - 1.00082 -
53+
SMH_pdf28 lnN - 1.00034 -
54+
SMH_pdf29 lnN - 1.00056 -
55+
SMH_pdf30 lnN - 1.00041 -
56+
SMH_pdf31 lnN - 1.00191 -
57+
SMH_pdf32 lnN - 1.0007 -
58+
SMH_pdf33 lnN - 1.00098 -
59+
SMH_pdf34 lnN - 1.00103 -
60+
SMH_pdf35 lnN - 1.00006 -
61+
SMH_pdf36 lnN - 1.00057 -
62+
SMH_pdf37 lnN - 1.00069 -
63+
SMH_pdf38 lnN - 1.00078 -
64+
SMH_pdf39 lnN - 1.00122 -
65+
SMH_pdf40 lnN - 1.00069 -
66+
SMH_pdf41 lnN - 1.0005 -
67+
SMH_pdf42 lnN - 1.00051 -
68+
SMH_pdf43 lnN - 1.00047 -
69+
SMH_pdf44 lnN - 1.00072 -
70+
SMH_pdf45 lnN - 1.00058 -
71+
SMH_pdf46 lnN - 1.00031 -
72+
SMH_pdf47 lnN - 1.00016 -
73+
SMH_pdf48 lnN - 1.00021 -
74+
SMH_pdf49 lnN - 1.00025 -
75+
SMH_pdf50 lnN - 1.00029 -
76+
SMH_pdf51 lnN - 1.00027 -
77+
SMH_pdf52 lnN - 1.00031 -
78+
SMH_pdf53 lnN - 1.00005 -
79+
SMH_pdf54 lnN - 1.00053 -
80+
SMH_pdf55 lnN - 1.00022 -
81+
SMH_pdf56 lnN - 1.00019 -
82+
SMH_pdf57 lnN - 1.00029 -
83+
SMH_pdf58 lnN - 1.00028 -
84+
SMH_pdf59 lnN - 1.00012 -
85+
mu_Global param 0 1.25
86+
highpt_mu_Global param 0 1.25
87+
Signal_JES lnN 0.991903/1.00821 - -
88+
Signal_ISR lnN 0.994838/1.00516 - -
89+
Signal_facScale lnN 0.997711/1.0027 - -
90+
Signal_renScale lnN 0.994153/1.00482 - -
91+
Signal_facRenScale lnN 0.991952/1.0076 - -
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
imax 1 number of bins
2+
jmax 2 number of processes minus 1
3+
kmax * number of nuisance parameters
4+
----------------------------------------------------------------------------------------
5+
shapes Bkg bin1 HggRazorWorkspace_bin1.root combineWS:singleExp_Bkg_bin1_sExp
6+
shapes SMH bin1 HggRazorWorkspace_bin1.root combineWS:SMH_bin1_DCB
7+
shapes signal bin1 HggRazorWorkspace_bin1.root combineWS:signal_bin1_DCB
8+
shapes data_obs bin1 HggRazorWorkspace_bin1.root combineWS:data_bin1
9+
----------------------------------------------------------------------------------------
10+
bin bin1
11+
observation -1.0
12+
----------------------------------------------------------------------------------------
13+
bin bin1 bin1 bin1
14+
process signal SMH Bkg
15+
process 0 1 2
16+
rate 1 1 1
17+
----------------------------------------------------------------------------------------
18+
CMS_Lumi lnN 1.026 1.026 -
19+
Photon_Trigger lnN 1.05 1.05 -
20+
PdfNorm lnN - 0.948/1.062 -
21+
SMH_JES lnN - 1.06347/0.974695 -
22+
SMH_facScale_bin1 lnN - 1.0081 -
23+
SMH_renScale_bin1 lnN - 1.11204 -
24+
SMH_facRenScale_bin1 lnN - 1.09797 -
25+
SMH_pdf0 lnN - 1.00029 -
26+
SMH_pdf1 lnN - 1.0003 -
27+
SMH_pdf2 lnN - 1.00073 -
28+
SMH_pdf3 lnN - 1.0002 -
29+
SMH_pdf4 lnN - 1.00085 -
30+
SMH_pdf5 lnN - 1.0003 -
31+
SMH_pdf6 lnN - 1.00101 -
32+
SMH_pdf7 lnN - 1.00058 -
33+
SMH_pdf8 lnN - 1.00128 -
34+
SMH_pdf9 lnN - 1.00119 -
35+
SMH_pdf10 lnN - 1.00124 -
36+
SMH_pdf11 lnN - 1.0022 -
37+
SMH_pdf12 lnN - 1.00022 -
38+
SMH_pdf13 lnN - 1.00148 -
39+
SMH_pdf14 lnN - 1.00114 -
40+
SMH_pdf15 lnN - 1.00086 -
41+
SMH_pdf16 lnN - 1.00085 -
42+
SMH_pdf17 lnN - 1.00148 -
43+
SMH_pdf18 lnN - 1.0009 -
44+
SMH_pdf19 lnN - 1.00061 -
45+
SMH_pdf20 lnN - 1.00125 -
46+
SMH_pdf21 lnN - 1.00123 -
47+
SMH_pdf22 lnN - 1.00112 -
48+
SMH_pdf23 lnN - 1.00085 -
49+
SMH_pdf24 lnN - 1.00139 -
50+
SMH_pdf25 lnN - 1.00058 -
51+
SMH_pdf26 lnN - 1.00041 -
52+
SMH_pdf27 lnN - 1.00076 -
53+
SMH_pdf28 lnN - 1.00118 -
54+
SMH_pdf29 lnN - 1.00075 -
55+
SMH_pdf30 lnN - 1.00062 -
56+
SMH_pdf31 lnN - 1.00057 -
57+
SMH_pdf32 lnN - 1.00068 -
58+
SMH_pdf33 lnN - 1.00067 -
59+
SMH_pdf34 lnN - 1.00109 -
60+
SMH_pdf35 lnN - 1.00066 -
61+
SMH_pdf36 lnN - 1.00089 -
62+
SMH_pdf37 lnN - 1.00123 -
63+
SMH_pdf38 lnN - 1.00032 -
64+
SMH_pdf39 lnN - 1.00152 -
65+
SMH_pdf40 lnN - 1.00096 -
66+
SMH_pdf41 lnN - 1.00049 -
67+
SMH_pdf42 lnN - 1.00089 -
68+
SMH_pdf43 lnN - 1.00096 -
69+
SMH_pdf44 lnN - 1.00042 -
70+
SMH_pdf45 lnN - 1.00102 -
71+
SMH_pdf46 lnN - 1.00018 -
72+
SMH_pdf47 lnN - 1.00062 -
73+
SMH_pdf48 lnN - 1.00087 -
74+
SMH_pdf49 lnN - 1.00045 -
75+
SMH_pdf50 lnN - 1.00058 -
76+
SMH_pdf51 lnN - 1.0004 -
77+
SMH_pdf52 lnN - 1.0005 -
78+
SMH_pdf53 lnN - 1.00037 -
79+
SMH_pdf54 lnN - 1.00071 -
80+
SMH_pdf55 lnN - 1.00048 -
81+
SMH_pdf56 lnN - 1.00038 -
82+
SMH_pdf57 lnN - 1.00046 -
83+
SMH_pdf58 lnN - 1.00064 -
84+
SMH_pdf59 lnN - 1.00029 -
85+
mu_Global param 0 1.25
86+
highpt_mu_Global param 0 1.25
87+
Signal_JES lnN 1.03332/0.972769 - -
88+
Signal_ISR lnN 1.02845/0.971548 - -
89+
Signal_facScale lnN 0.983753/1.01452 - -
90+
Signal_renScale lnN 0.999471/1.00033 - -
91+
Signal_facRenScale lnN 0.983286/1.01491 - -
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
imax 1 number of bins
2+
jmax 2 number of processes minus 1
3+
kmax * number of nuisance parameters
4+
----------------------------------------------------------------------------------------
5+
shapes Bkg bin10 HggRazorWorkspace_bin10.root combineWS:singleExp_Bkg_bin10_sExp
6+
shapes SMH bin10 HggRazorWorkspace_bin10.root combineWS:SMH_bin10_DCB
7+
shapes signal bin10 HggRazorWorkspace_bin10.root combineWS:signal_bin10_DCB
8+
shapes data_obs bin10 HggRazorWorkspace_bin10.root combineWS:data_bin10
9+
----------------------------------------------------------------------------------------
10+
bin bin10
11+
observation -1.0
12+
----------------------------------------------------------------------------------------
13+
bin bin10 bin10 bin10
14+
process signal SMH Bkg
15+
process 0 1 2
16+
rate 1 1 1
17+
----------------------------------------------------------------------------------------
18+
CMS_Lumi lnN 1.026 1.026 -
19+
Photon_Trigger lnN 1.05 1.05 -
20+
PdfNorm lnN - 0.948/1.062 -
21+
SigmaMoverMEfficiency lnN 0.879564/1.12044 0.879564/1.12044 -
22+
SMH_JES lnN - 1.06485/1.05799 -
23+
SMH_facScale_bin10 lnN - 1.00753 -
24+
SMH_renScale_bin10 lnN - 1.17662 -
25+
SMH_facRenScale_bin10 lnN - 1.17228 -
26+
SMH_pdf0 lnN - 1.00014 -
27+
SMH_pdf1 lnN - 1.00048 -
28+
SMH_pdf2 lnN - 1.00013 -
29+
SMH_pdf3 lnN - 1.00094 -
30+
SMH_pdf4 lnN - 1.00066 -
31+
SMH_pdf5 lnN - 1.00078 -
32+
SMH_pdf6 lnN - 1.00035 -
33+
SMH_pdf7 lnN - 1.00062 -
34+
SMH_pdf8 lnN - 1.00112 -
35+
SMH_pdf9 lnN - 1.00022 -
36+
SMH_pdf10 lnN - 1.00044 -
37+
SMH_pdf11 lnN - 1.00193 -
38+
SMH_pdf12 lnN - 1.00092 -
39+
SMH_pdf13 lnN - 1.00089 -
40+
SMH_pdf14 lnN - 1.00061 -
41+
SMH_pdf15 lnN - 1.00022 -
42+
SMH_pdf16 lnN - 1.00089 -
43+
SMH_pdf17 lnN - 1.00058 -
44+
SMH_pdf18 lnN - 1.00048 -
45+
SMH_pdf19 lnN - 1.00029 -
46+
SMH_pdf20 lnN - 1.00056 -
47+
SMH_pdf21 lnN - 1.00034 -
48+
SMH_pdf22 lnN - 1.00082 -
49+
SMH_pdf23 lnN - 1.00125 -
50+
SMH_pdf24 lnN - 1.00003 -
51+
SMH_pdf25 lnN - 1.00067 -
52+
SMH_pdf26 lnN - 1.00083 -
53+
SMH_pdf27 lnN - 1.00081 -
54+
SMH_pdf28 lnN - 1.00016 -
55+
SMH_pdf29 lnN - 1.00013 -
56+
SMH_pdf30 lnN - 1.00046 -
57+
SMH_pdf31 lnN - 1.00077 -
58+
SMH_pdf32 lnN - 1.0006 -
59+
SMH_pdf33 lnN - 1.00006 -
60+
SMH_pdf34 lnN - 1.00063 -
61+
SMH_pdf35 lnN - 1.00032 -
62+
SMH_pdf36 lnN - 1.00032 -
63+
SMH_pdf37 lnN - 1.00021 -
64+
SMH_pdf38 lnN - 1.00026 -
65+
SMH_pdf39 lnN - 1.00019 -
66+
SMH_pdf40 lnN - 1.00016 -
67+
SMH_pdf41 lnN - 1.00031 -
68+
SMH_pdf42 lnN - 1.00043 -
69+
SMH_pdf43 lnN - 1.00008 -
70+
SMH_pdf44 lnN - 1.00013 -
71+
SMH_pdf45 lnN - 1.00017 -
72+
SMH_pdf46 lnN - 1.00031 -
73+
SMH_pdf47 lnN - 1.00031 -
74+
SMH_pdf48 lnN - 1.00015 -
75+
SMH_pdf49 lnN - 1.00022 -
76+
SMH_pdf50 lnN - 1.00025 -
77+
SMH_pdf51 lnN - 1.00021 -
78+
SMH_pdf52 lnN - 1.00014 -
79+
SMH_pdf53 lnN - 1.00034 -
80+
SMH_pdf54 lnN - 1.00012 -
81+
SMH_pdf55 lnN - 1.00005 -
82+
SMH_pdf56 lnN - 1.00013 -
83+
SMH_pdf57 lnN - 1.00041 -
84+
SMH_pdf58 lnN - 1.0001 -
85+
SMH_pdf59 lnN - 1.00014 -
86+
mu_Global param 0 1.25
87+
Signal_JES lnN 1.02995/0.936816 - -
88+
Signal_ISR lnN 1.04613/0.953873 - -
89+
Signal_facScale lnN 0.985082/1.01241 - -
90+
Signal_renScale lnN 1.00224/0.998018 - -
91+
Signal_facRenScale lnN 0.987348/1.01047 - -

0 commit comments

Comments
 (0)