forked from cms-analysis/HiggsAnalysis-HiggsToTauTau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mssm_xs_tools.h
330 lines (272 loc) · 16.8 KB
/
mssm_xs_tools.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#ifndef mssm_xs_tools_h
#define mssm_xs_tools_h
#include "TH2F.h"
#include "TFile.h"
#include "TObjString.h"
#include <iostream>
#include <cmath>
class mssm_xs_tools{
public:
mssm_xs_tools();
~mssm_xs_tools();
// specify input file, could also be moved into constructor?
void SetInput(char* filename);
// help method
void help();
// access BRs into bbbar
Double_t Give_BR_A_bb(Double_t mA, Double_t tanb);
Double_t Give_BR_h_bb(Double_t mA, Double_t tanb);
Double_t Give_BR_H_bb(Double_t mA, Double_t tanb);
// access BRs into tautau
Double_t Give_BR_A_tautau(Double_t mA, Double_t tanb);
Double_t Give_BR_h_tautau(Double_t mA, Double_t tanb);
Double_t Give_BR_H_tautau(Double_t mA, Double_t tanb);
// access BRs into mumu
Double_t Give_BR_A_mumu(Double_t mA, Double_t tanb);
Double_t Give_BR_h_mumu(Double_t mA, Double_t tanb);
Double_t Give_BR_H_mumu(Double_t mA, Double_t tanb);
// ggF stuff
Double_t Give_Xsec_ggFA(Double_t mA, Double_t tanb);
Double_t Give_Xsec_ggFH(Double_t mA, Double_t tanb);
Double_t Give_Xsec_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFh(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFA(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFH(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFh(Double_t mA, Double_t tanb);
// ggF+bbH5f stuff
//combined
Double_t Give_Xsec_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_ggFplusbbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFplusbbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFplusbbH5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_ggFplusbbh5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme) in fb
Double_t Give_Xsec_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_bbH5f(Double_t mA, Double_t tanb);
// TNV
// access xsec bb->phi (5-flavor scheme)
// total scale uncertainty (quadratic addition) upwards direction in fb
Double_t Give_XsecUnc_muup_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// total scale uncertainty (quadratic addition) downwards direction in fb
Double_t Give_XsecUnc_mudown_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF (MSTW2008, 68%) upwards direction in fb
Double_t Give_XsecUnc_pdf68up_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68up_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF (MSTW2008, 68%) upwards direction in fb
Double_t Give_XsecUnc_pdf90up_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf90up_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf90up_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF+alphas (MSTW2008, 68%) upwards direction in fb
Double_t Give_XsecUnc_pdfalphas68up_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68up_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF+alphas (MSTW2008, 68%) upwards direction in fb
Double_t Give_XsecUnc_pdfalphas90up_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas90up_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas90up_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF (MSTW2008, 68%) downwards direction in fb
Double_t Give_XsecUnc_pdf68down_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf68down_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF (MSTW2008, 68%) downwards direction in fb
Double_t Give_XsecUnc_pdf90down_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf90down_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdf90down_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF+alphas (MSTW2008, 68%) downwards direction in fb
Double_t Give_XsecUnc_pdfalphas68down_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas68down_bbH5f(Double_t mA, Double_t tanb);
// access xsec bb->phi (5-flavor scheme)
// PDF+alphas (MSTW2008, 68%) downwards direction in fb
Double_t Give_XsecUnc_pdfalphas90down_bbA5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas90down_bbh5f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_pdfalphas90down_bbH5f(Double_t mA, Double_t tanb);
// access xsec gg->bbphi (4-flavor scheme)
// numbers are in fb
Double_t Give_Xsec_bbA4f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_bbh4f(Double_t mA, Double_t tanb);
Double_t Give_Xsec_bbH4f(Double_t mA, Double_t tanb);
// access scale uncertainty upwards direction in fb
Double_t Give_XsecUnc_muup_bbA4f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_bbh4f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_muup_bbH4f(Double_t mA, Double_t tanb);
// access scale uncertainty downwards direction in fb
Double_t Give_XsecUnc_mudown_bbA4f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_bbh4f(Double_t mA, Double_t tanb);
Double_t Give_XsecUnc_mudown_bbH4f(Double_t mA, Double_t tanb);
// PDF uncertainty or 4f calculation is not available and expected to be negligible compared to scale uncertainty
// access masses
Double_t Give_Mass_h(Double_t mA, Double_t tanb);
Double_t Give_Mass_H(Double_t mA, Double_t tanb);
// Santander
Double_t GiveXsec_Santander_h(Double_t mA, Double_t tanb);
Double_t GiveXsec_Santander_H(Double_t mA, Double_t tanb);
Double_t GiveXsec_Santander_A(Double_t mA, Double_t tanb);
Double_t GiveXsec_UncUp_Santander_H(Double_t mA, Double_t tanb, TString PDFCL);
Double_t GiveXsec_UncUp_Santander_h(Double_t mA, Double_t tanb, TString PDFCL);
Double_t GiveXsec_UncUp_Santander_A(Double_t mA, Double_t tanb, TString PDFCL);
Double_t GiveXsec_UncDown_Santander_H(Double_t mA, Double_t tanb, TString PDFCL);
Double_t GiveXsec_UncDown_Santander_h(Double_t mA, Double_t tanb, TString PDFCL);
Double_t GiveXsec_UncDown_Santander_A(Double_t mA, Double_t tanb, TString PDFCL);
private:
/////////////////////////////////////////////////////////////////////
// New out.root file contents (Yellow Report)
TFile* m_input;
TH2F* m_h_brbb_h; //BR(h->bb)
TH2F* m_h_brbb_H; //BR(H->bb)
TH2F* m_h_brbb_A; //BR(A->bb)
TH2F* m_h_brtautau_h; //BR(h->tautau)
TH2F* m_h_brtautau_H; //BR(H->tautau)
TH2F* m_h_brtautau_A; //BR(A->tautau)
TH2F* m_h_brmumu_h; //BR(h->mumu)
TH2F* m_h_brmumu_H; //BR(H->mumu)
TH2F* m_h_brmumu_A; //BR(A->mumu)
// NB: ggF cross-sections are in fb
TH2F* m_h_ggF_xsec_h; // gg->h xsection (mA,tan(beta))
TH2F* m_h_ggF_xsec_H; // gg->H xsection (mA,tan(beta))
TH2F* m_h_ggF_xsec_A; // gg->A xsection (mA,tan(beta))
TH2F* m_h_ggF_xsec05_h; // gg->h xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggF_xsec05_H; // gg->H xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggF_xsec05_A; // gg->A xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggF_xsec20_h; // gg->h xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggF_xsec20_H; // gg->H xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggF_xsec20_A; // gg->A xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggF_pdfup_h; // gg->h xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_pdfup_H; // gg->H xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_pdfup_A; // gg->A xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_pdfdown_h; // gg->h xsection PDF uncertainty- (mA,tan(beta))
TH2F* m_h_ggF_pdfdown_H; // gg->H xsection PDF uncertainty- (mA,tan(beta))
TH2F* m_h_ggF_pdfdown_A; // gg->A xsection PDF uncertainty- (mA,tan(beta))
// NB: ggF_pdfalphas are all only pdf uncertainties; still need to add alphas unc. in quadrature
TH2F* m_h_ggF_alphasup_h; // gg->h xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_alphasup_H; // gg->H xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_alphasup_A; // gg->A xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggF_alphasdown_h; // gg->h xsection PDFALPHAS uncertainty- (mA,tan(beta))
TH2F* m_h_ggF_alphasdown_H; // gg->H xsection PDFALPHAS uncertainty- (mA,tan(beta))
TH2F* m_h_ggF_alphasdown_A; // gg->A xsection PDFALPHAS uncertainty- (mA,tan(beta))
//ggFplusbbH5f combined
// NB: ggF cross-sections are in fb
TH2F* m_h_ggFplusbbH_xsec_h; // gg->h xsection (mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec_H; // gg->H xsection (mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec_A; // gg->A xsection (mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec05_h; // gg->h xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec05_H; // gg->H xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec05_A; // gg->A xsection (scale 0.5)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec20_h; // gg->h xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec20_H; // gg->H xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_xsec20_A; // gg->A xsection (scale 2.0)(mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfup_h; // gg->h xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfup_H; // gg->H xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfup_A; // gg->A xsection PDF uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfdown_h; // gg->h xsection PDF uncertainty- (mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfdown_H; // gg->H xsection PDF uncertainty- (mA,tan(beta))
TH2F* m_h_ggFplusbbH_pdfdown_A; // gg->A xsection PDF uncertainty- (mA,tan(beta))
// NB: ggFplusbbH_pdfalphas are all only pdf uncertainties; still need to add alphas unc. in quadrature
TH2F* m_h_ggFplusbbH_alphasup_h; // gg->h xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_alphasup_H; // gg->H xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_alphasup_A; // gg->A xsection PDFALPHAS uncertainty+ (mA,tan(beta))
TH2F* m_h_ggFplusbbH_alphasdown_h; // gg->h xsection PDFALPHAS uncertainty- (mA,tan(beta))
TH2F* m_h_ggFplusbbH_alphasdown_H; // gg->H xsection PDFALPHAS uncertainty- (mA,tan(beta))
TH2F* m_h_ggFplusbbH_alphasdown_A; // gg->A xsection PDFALPHAS uncertainty- (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_h; // bbh xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_H; // bbH xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_A; // bbA xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_h_low; // bbh xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_H_low; // bbH xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_A_low; // bbA xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_h_high; // bbh xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_H_high; // bbH xsection (mA,tan(beta))
TH2F* m_h_bbH4f_xsec_A_high; // bbA xsection (mA,tan(beta))
TH2F* m_h_bbH_xsec_h; // bb->h xsection (mA,tan(beta))
TH2F* m_h_bbH_xsec_H; // bb->H xsection (mA,tan(beta))
TH2F* m_h_bbH_xsec_A; // bb->A xsection (mA,tan(beta))
TH2F* m_h_bbH_mufdown_h; // bb->h xsection muf unc.- (mA,tan(beta))
TH2F* m_h_bbH_mufdown_H; // bb->H xsection muf unc.- (mA,tan(beta))
TH2F* m_h_bbH_mufdown_A; // bb->A xsection muf unc.- (mA,tan(beta))
TH2F* m_h_bbH_mufup_h; // bb->h xsection muf unc.+ (mA,tan(beta))
TH2F* m_h_bbH_mufup_H; // bb->H xsection muf unc.+ (mA,tan(beta))
TH2F* m_h_bbH_mufup_A; // bb->A xsection muf unc.+ (mA,tan(beta))
TH2F* m_h_bbH_murdown_h; // bb->h xsection mur unc.- (mA,tan(beta))
TH2F* m_h_bbH_murdown_H; // bb->H xsection mur unc.- (mA,tan(beta))
TH2F* m_h_bbH_murdown_A; // bb->A xsection mur unc.- (mA,tan(beta))
TH2F* m_h_bbH_murup_h; // bb->h xsection mur unc.+ (mA,tan(beta))
TH2F* m_h_bbH_murup_H; // bb->H xsection mur unc.+ (mA,tan(beta))
TH2F* m_h_bbH_murup_A; // bb->A xsection mur unc.+ (mA,tan(beta))
TH2F* m_h_bbH_mudown_h; // bb->h xsection mu unc.- (mA,tan(beta))
TH2F* m_h_bbH_mudown_H; // bb->H xsection mu unc.- (mA,tan(beta))
TH2F* m_h_bbH_mudown_A; // bb->A xsection mu unc.- (mA,tan(beta))
TH2F* m_h_bbH_muup_h; // bb->h xsection mu unc.+ (mA,tan(beta))
TH2F* m_h_bbH_muup_H; // bb->H xsection mu unc.+ (mA,tan(beta))
TH2F* m_h_bbH_muup_A; // bb->A xsection mu unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf68down_h; // bb->h xsection pdf68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf68down_H; // bb->H xsection pdf68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf68down_A; // bb->A xsection pdf68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf68up_h; // bb->h xsection pdf68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf68up_H; // bb->H xsection pdf68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf68up_A; // bb->A xsection pdf68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf90down_h; // bb->h xsection pdf90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf90down_H; // bb->H xsection pdf90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf90down_A; // bb->A xsection pdf90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdf90up_h; // bb->h xsection pdf90 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf90up_H; // bb->H xsection pdf90 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdf90up_A; // bb->A xsection pdf90 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68down_h; // bb->h xsection pdfalphas68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68down_H; // bb->H xsection pdfalphas68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68down_A; // bb->A xsection pdfalphas68 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68up_h; // bb->h xsection pdfalphas68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68up_H; // bb->H xsection pdfalphas68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas68up_A; // bb->A xsection pdfalphas68 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90down_h; // bb->h xsection pdfalphas90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90down_H; // bb->H xsection pdfalphas90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90down_A; // bb->A xsection pdfalphas90 unc.- (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90up_h; // bb->h xsection pdfalphas90 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90up_H; // bb->H xsection pdfalphas90 unc.+ (mA,tan(beta))
TH2F* m_h_bbH_pdfalphas90up_A; // bb->A xsection pdfalphas90 unc.+ (mA,tan(beta))
TH2F* m_h_mh; // mh (mA,tan(beta))
TH2F* m_h_mH; // mH (mA,tan(beta))
};
#endif // MSSM_XS_TOOLS_H