a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
ThObsFactory_BSM.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2012 HEPfit Collaboration
3 *
4 *
5 * For the licensing terms see doc/COPYING.
6 */
7
8#include "ThObsFactory.h"
10#include "SUSYObservables.h"
11#include "LoopMediators.h"
12#include "THDMObservables.h"
13#include "LRSMObservables.h"
14/* BEGIN: REMOVE FROM THE PACKAGE */
16#include "THDMWObservables.h"
17/* END: REMOVE FROM THE PACKAGE */
20#include "NPSMEFTd6CHRU.h"
21using namespace ThObsConst;
22
24{
25 //----- SUSY spectra and observables -----
26/* BEGIN: REMOVE FROM THE PACKAGE */
27#if FEYNHIGGS
28 obsThFactory["OutputSLHAfromFH"] = [](const StandardModel& SM) { return new OutputSLHAfromFH(SM); }; // for debug
29#endif
30/* END: REMOVE FROM THE PACKAGE */
31 obsThFactory["MHl"] = [=](const StandardModel& SM) { return new Mhiggs(SM, 0); };
32 obsThFactory["MHh"] = [=](const StandardModel& SM) { return new Mhiggs(SM, 1); };
33 obsThFactory["MHa"] = [=](const StandardModel& SM) { return new Mhiggs(SM, 2); };
34 obsThFactory["MHp"] = [=](const StandardModel& SM) { return new Mhiggs(SM, 3); };
35 obsThFactory["Msu1"] = [=](const StandardModel& SM) { return new Msup(SM, 0); };
36 obsThFactory["Msu2"] = [=](const StandardModel& SM) { return new Msup(SM, 1); };
37 obsThFactory["Msu3"] = [=](const StandardModel& SM) { return new Msup(SM, 2); };
38 obsThFactory["Msu4"] = [=](const StandardModel& SM) { return new Msup(SM, 3); };
39 obsThFactory["Msu5"] = [=](const StandardModel& SM) { return new Msup(SM, 4); };
40 obsThFactory["Msu6"] = [=](const StandardModel& SM) { return new Msup(SM, 5); };
41 obsThFactory["Msd1"] = [=](const StandardModel& SM) { return new Msdown(SM, 0); };
42 obsThFactory["Msd2"] = [=](const StandardModel& SM) { return new Msdown(SM, 1); };
43 obsThFactory["Msd3"] = [=](const StandardModel& SM) { return new Msdown(SM, 2); };
44 obsThFactory["Msd4"] = [=](const StandardModel& SM) { return new Msdown(SM, 3); };
45 obsThFactory["Msd5"] = [=](const StandardModel& SM) { return new Msdown(SM, 4); };
46 obsThFactory["Msd6"] = [=](const StandardModel& SM) { return new Msdown(SM, 5); };
47 obsThFactory["Msl1"] = [=](const StandardModel& SM) { return new Mslepton(SM, 0); };
48 obsThFactory["Msl2"] = [=](const StandardModel& SM) { return new Mslepton(SM, 1); };
49 obsThFactory["Msl3"] = [=](const StandardModel& SM) { return new Mslepton(SM, 2); };
50 obsThFactory["Msl4"] = [=](const StandardModel& SM) { return new Mslepton(SM, 3); };
51 obsThFactory["Msl5"] = [=](const StandardModel& SM) { return new Mslepton(SM, 4); };
52 obsThFactory["Msl6"] = [=](const StandardModel& SM) { return new Mslepton(SM, 5); };
53 obsThFactory["Msnu1"] = [=](const StandardModel& SM) { return new Msneutrino(SM, 0); };
54 obsThFactory["Msnu2"] = [=](const StandardModel& SM) { return new Msneutrino(SM, 1); };
55 obsThFactory["Msnu3"] = [=](const StandardModel& SM) { return new Msneutrino(SM, 2); };
56 obsThFactory["Mch1"] = [=](const StandardModel& SM) { return new Mchargino(SM, 0); };
57 obsThFactory["Mch2"] = [=](const StandardModel& SM) { return new Mchargino(SM, 1); };
58 obsThFactory["Mneu1"] = [=](const StandardModel& SM) { return new Mneutralino(SM, 0); };
59 obsThFactory["Mneu2"] = [=](const StandardModel& SM) { return new Mneutralino(SM, 1); };
60 obsThFactory["Mneu3"] = [=](const StandardModel& SM) { return new Mneutralino(SM, 2); };
61 obsThFactory["Mneu4"] = [=](const StandardModel& SM) { return new Mneutralino(SM, 3); };
62 obsThFactory["Mw_dRho"] = [](const StandardModel& SM) { return new Mw_dRho(SM); };
63
64 //----- FlavourWilsonCoefficient_DF2 observables -----
65 obsThFactory["WC_abs_C1_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 0, 0); };
66 obsThFactory["WC_abs_C2_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 1, 0); };
67 obsThFactory["WC_abs_C3_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 2, 0); };
68 obsThFactory["WC_abs_C4_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 3, 0); };
69 obsThFactory["WC_abs_C5_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 4, 0); };
70 obsThFactory["WC_arg_C1_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 0, 1); };
71 obsThFactory["WC_arg_C2_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 1, 1); };
72 obsThFactory["WC_arg_C3_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 2, 1); };
73 obsThFactory["WC_arg_C4_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 3, 1); };
74 obsThFactory["WC_arg_C5_s"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CK(SM, 4, 1); };
75
76 obsThFactory["WC_abs_C1_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 0, 0); };
77 obsThFactory["WC_abs_C2_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 1, 0); };
78 obsThFactory["WC_abs_C3_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 2, 0); };
79 obsThFactory["WC_abs_C4_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 3, 0); };
80 obsThFactory["WC_abs_C5_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 4, 0); };
81 obsThFactory["WC_arg_C1_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 0, 1); };
82 obsThFactory["WC_arg_C2_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 1, 1); };
83 obsThFactory["WC_arg_C3_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 2, 1); };
84 obsThFactory["WC_arg_C4_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 3, 1); };
85 obsThFactory["WC_arg_C5_c"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CD(SM, 4, 1); };
86
87 obsThFactory["WC_abs_C1_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 0, 0); };
88 obsThFactory["WC_abs_C2_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 1, 0); };
89 obsThFactory["WC_abs_C3_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 2, 0); };
90 obsThFactory["WC_abs_C4_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 3, 0); };
91 obsThFactory["WC_abs_C5_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 4, 0); };
92 obsThFactory["WC_arg_C1_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 0, 1); };
93 obsThFactory["WC_arg_C2_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 1, 1); };
94 obsThFactory["WC_arg_C3_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 2, 1); };
95 obsThFactory["WC_arg_C4_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 3, 1); };
96 obsThFactory["WC_arg_C5_bd"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBd(SM, 4, 1); };
97
98 obsThFactory["WC_abs_C1_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 0, 0); };
99 obsThFactory["WC_abs_C2_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 1, 0); };
100 obsThFactory["WC_abs_C3_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 2, 0); };
101 obsThFactory["WC_abs_C4_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 3, 0); };
102 obsThFactory["WC_abs_C5_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 4, 0); };
103 obsThFactory["WC_arg_C1_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 0, 1); };
104 obsThFactory["WC_arg_C2_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 1, 1); };
105 obsThFactory["WC_arg_C3_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 2, 1); };
106 obsThFactory["WC_arg_C4_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 3, 1); };
107 obsThFactory["WC_arg_C5_bs"] = [=](const StandardModel& SM) { return new FlavourWilsonCoefficient_DF2_CBs(SM, 4, 1); };
108
109 //----- THDM observables -----
110 obsThFactory["globalminimum"] = [](const StandardModel& SM) { return new globalminimum(SM); };
111
112 obsThFactory["mu_ggF_tth_htobb8"] = [](const StandardModel& SM) { return new ggF_tth_htobb8(SM); };
113 obsThFactory["mu_ggF_tth_htoWW8"] = [](const StandardModel& SM) { return new ggF_tth_htoWW8(SM); };
114 obsThFactory["mu_ggF_tth_htotautau8"] = [](const StandardModel& SM) { return new ggF_tth_htotautau8(SM); };
115 obsThFactory["mu_ggF_tth_htoZZ8"] = [](const StandardModel& SM) { return new ggF_tth_htoZZ8(SM); };
116 obsThFactory["mu_ggF_tth_htogaga8"] = [](const StandardModel& SM) { return new ggF_tth_htogaga8(SM); };
117 obsThFactory["mu_ggF_tth_htobb13"] = [](const StandardModel& SM) { return new ggF_tth_htobb13(SM); };
118 obsThFactory["mu_ggF_tth_htoWW13"] = [](const StandardModel& SM) { return new ggF_tth_htoWW13(SM); };
119 obsThFactory["mu_ggF_tth_htotautau13"] = [](const StandardModel& SM) { return new ggF_tth_htotautau13(SM); };
120 obsThFactory["mu_ggF_tth_htoZZ13"] = [](const StandardModel& SM) { return new ggF_tth_htoZZ13(SM); };
121 obsThFactory["mu_ggF_tth_htogaga13"] = [](const StandardModel& SM) { return new ggF_tth_htogaga13(SM); };
122 obsThFactory["mu_VBF_Vh_htobb"] = [](const StandardModel& SM) { return new VBF_Vh_htobb(SM); };
123 obsThFactory["mu_VBF_Vh_htoWW"] = [](const StandardModel& SM) { return new VBF_Vh_htoWW(SM); };
124 obsThFactory["mu_VBF_Vh_htotautau"] = [](const StandardModel& SM) { return new VBF_Vh_htotautau(SM); };
125 obsThFactory["mu_VBF_Vh_htoZZ"] = [](const StandardModel& SM) { return new VBF_Vh_htoZZ(SM); };
126 obsThFactory["mu_VBF_Vh_htogaga"] = [](const StandardModel& SM) { return new VBF_Vh_htogaga(SM); };
127 obsThFactory["mu_VBF_Vh_htogg"] = [](const StandardModel& SM) { return new VBF_Vh_htogg(SM); };
128 obsThFactory["mu_VBF_Vh_htocc"] = [](const StandardModel& SM) { return new VBF_Vh_htocc(SM); };
129 obsThFactory["mu_ggF_htobb"] = [](const StandardModel& SM) { return new ggF_htobb(SM); };
130 obsThFactory["mu_ggF_htoWW"] = [](const StandardModel& SM) { return new ggF_htoWW(SM); };
131 obsThFactory["mu_ggF_htotautau"] = [](const StandardModel& SM) { return new ggF_htotautau(SM); };
132 obsThFactory["mu_ggF_htoZZ"] = [](const StandardModel& SM) { return new ggF_htoZZ(SM); };
133 obsThFactory["mu_ggF_htogaga"] = [](const StandardModel& SM) { return new ggF_htogaga(SM); };
134 obsThFactory["mu_tth_htobb"] = [](const StandardModel& SM) { return new tth_htobb(SM); };
135 obsThFactory["mu_tth_htoWW"] = [](const StandardModel& SM) { return new tth_htoWW(SM); };
136 obsThFactory["mu_tth_htotautau"] = [](const StandardModel& SM) { return new tth_htotautau(SM); };
137 obsThFactory["mu_tth_htoZZ"] = [](const StandardModel& SM) { return new tth_htoZZ(SM); };
138 obsThFactory["mu_tth_htogaga"] = [](const StandardModel& SM) { return new tth_htogaga(SM); };
139 obsThFactory["mu_htobb"] = [](const StandardModel& SM) { return new mu_htobb(SM); };
140 obsThFactory["mu_htoWW"] = [](const StandardModel& SM) { return new mu_htoWW(SM); };
141 obsThFactory["mu_htotautau"] = [](const StandardModel& SM) { return new mu_htotautau(SM); };
142 obsThFactory["mu_htoZga"] = [](const StandardModel& SM) { return new mu_htoZga(SM); };
143 obsThFactory["Gamma_h_THDM"] = [](const StandardModel& SM) { return new Gamma_h_THDM(SM); };
144 obsThFactory["rh_gaga_THDM"] = [](const StandardModel& SM) { return new rh_gaga_THDM(SM); };
145 obsThFactory["rh_Zga_THDM"] = [](const StandardModel& SM) { return new rh_Zga_THDM(SM); };
146 obsThFactory["rh_gg_THDM"] = [](const StandardModel& SM) { return new rh_gg_THDM(SM); };
147
148 obsThFactory["Hobs_ggF_H_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_tautau_ATLAS8(SM); };
149 obsThFactory["Hobs_ggF_H_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_tautau_CMS8(SM); };
150 obsThFactory["Hobs_bbF_H_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bbF_H_tautau_ATLAS8(SM); };
151 obsThFactory["Hobs_bbF_H_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bbF_H_tautau_CMS8(SM); };
152 obsThFactory["Hobs_pp_H_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_gaga_ATLAS8(SM); };
153 obsThFactory["Hobs_ggF_H_gaga_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_gaga_CMS8(SM); };
154 obsThFactory["Hobs_pp_H_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_Zga_llga_ATLAS8(SM); };
155 obsThFactory["Hobs_pp_H_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_Zga_llga_CMS8(SM); };
156 obsThFactory["Hobs_mu_pp_H_VV_CMS8"] = [](const StandardModel& SM) { return new Hobs_mu_pp_H_VV_CMS8(SM); };
157 obsThFactory["Hobs_ggF_H_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_ATLAS8(SM); };
158 obsThFactory["Hobs_VBF_H_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_ATLAS8(SM); };
159 obsThFactory["Hobs_ggF_H_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_WW_ATLAS8(SM); };
160 obsThFactory["Hobs_VBF_H_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VBF_H_WW_ATLAS8(SM); };
161 obsThFactory["Hobs_ggF_H_hh_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_hh_ATLAS8(SM); };
162 obsThFactory["Hobs_pp_H_hh_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_CMS8(SM); };
163 obsThFactory["Hobs_ggF_H_hh_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_hh_bbtautau_CMS8(SM); };
164 obsThFactory["Hobs_pp_H_hh_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbbb_CMS8(SM); };
165 obsThFactory["Hobs_pp_H_hh_gagabb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_gagabb_CMS8(SM); };
166 obsThFactory["Hobs_ggF_H_tt_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_H_tt_ATLAS8(SM); };
167 obsThFactory["Hobs_bbF_H_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bbF_H_bb_CMS8(SM); };
168 obsThFactory["Hobs_pp_H_AZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_AZ_bbll_CMS8(SM); };
169 obsThFactory["Hobs_pp_H_AZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H_AZ_tautaull_CMS8(SM); };
170 obsThFactory["Robs_ggF_H_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_tautau_ATLAS8(SM); };
171 obsThFactory["Robs_ggF_H_tautau_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_tautau_CMS8(SM); };
172 obsThFactory["Robs_bbF_H_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Robs_bbF_H_tautau_ATLAS8(SM); };
173 obsThFactory["Robs_bbF_H_tautau_CMS8"] = [](const StandardModel& SM) { return new Robs_bbF_H_tautau_CMS8(SM); };
174 obsThFactory["Robs_pp_H_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_H_gaga_ATLAS8(SM); };
175 obsThFactory["Robs_ggF_H_gaga_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_gaga_CMS8(SM); };
176 obsThFactory["Robs_pp_H_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_H_Zga_llga_ATLAS8(SM); };
177 obsThFactory["Robs_pp_H_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_Zga_llga_CMS8(SM); };
178 obsThFactory["Robs_mu_pp_H_VV_CMS8"] = [](const StandardModel& SM) { return new Robs_mu_pp_H_VV_CMS8(SM); };
179 obsThFactory["Robs_ggF_H_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_ZZ_ATLAS8(SM); };
180 obsThFactory["Robs_VBF_H_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Robs_VBF_H_ZZ_ATLAS8(SM); };
181 obsThFactory["Robs_ggF_H_WW_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_WW_ATLAS8(SM); };
182 obsThFactory["Robs_VBF_H_WW_ATLAS8"] = [](const StandardModel& SM) { return new Robs_VBF_H_WW_ATLAS8(SM); };
183 obsThFactory["Robs_ggF_H_hh_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_hh_ATLAS8(SM); };
184 obsThFactory["Robs_pp_H_hh_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_CMS8(SM); };
185 obsThFactory["Robs_ggF_H_hh_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_hh_bbtautau_CMS8(SM); };
186 obsThFactory["Robs_pp_H_hh_bbbb_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbbb_CMS8(SM); };
187 obsThFactory["Robs_pp_H_hh_gagabb_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_gagabb_CMS8(SM); };
188 obsThFactory["Robs_ggF_H_tt_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_H_tt_ATLAS8(SM); };
189 obsThFactory["Robs_bbF_H_bb_CMS8"] = [](const StandardModel& SM) { return new Robs_bbF_H_bb_CMS8(SM); };
190 obsThFactory["Robs_pp_H_AZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_AZ_bbll_CMS8(SM); };
191 obsThFactory["Robs_pp_H_AZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_H_AZ_tautaull_CMS8(SM); };
192 obsThFactory["log10_ggF_H_tautau_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_tautau_TH8(SM); };
193 obsThFactory["log10_bbF_H_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bbF_H_tautau_TH8(SM); };
194 obsThFactory["log10_pp_H_gaga_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_gaga_TH8(SM); };
195 obsThFactory["log10_ggF_H_gaga_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_gaga_TH8(SM); };
196 obsThFactory["log10_pp_H_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_Zga_llga_TH8(SM); };
197 obsThFactory["log10_mu_pp_H_VV_TH8"] = [](const StandardModel& SM) { return new log10_mu_pp_H_VV_TH8(SM); };
198 obsThFactory["log10_ggF_H_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_ZZ_TH8(SM); };
199 obsThFactory["log10_VBF_H_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_VBF_H_ZZ_TH8(SM); };
200 obsThFactory["log10_ggF_H_WW_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_WW_TH8(SM); };
201 obsThFactory["log10_VBF_H_WW_TH8"] = [](const StandardModel& SM) { return new log10_VBF_H_WW_TH8(SM); };
202 obsThFactory["log10_ggF_H_hh_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_hh_TH8(SM); };
203 obsThFactory["log10_pp_H_hh_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_hh_TH8(SM); };
204 obsThFactory["log10_ggF_H_hh_bbtautau_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_hh_bbtautau_TH8(SM); };
205 obsThFactory["log10_pp_H_hh_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_hh_bbbb_TH8(SM); };
206 obsThFactory["log10_pp_H_hh_gagabb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_hh_gagabb_TH8(SM); };
207 obsThFactory["log10_ggF_H_tt_TH8"] = [](const StandardModel& SM) { return new log10_ggF_H_tt_TH8(SM); };
208 obsThFactory["log10_bbF_H_bb_TH8"] = [](const StandardModel& SM) { return new log10_bbF_H_bb_TH8(SM); };
209 obsThFactory["log10_pp_H_AZ_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_AZ_bbll_TH8(SM); };
210 obsThFactory["log10_pp_H_AZ_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_pp_H_AZ_tautaull_TH8(SM); };
211 obsThFactory["Hobs_ttF_H_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ttF_H_tt_ATLAS13(SM); };
212 obsThFactory["Hobs_bbF_H_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bbF_H_tt_ATLAS13(SM); };
213 obsThFactory["Hobs_ggF_H_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_tautau_ATLAS13(SM); };
214 obsThFactory["Hobs_bbF_H_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bbF_H_tautau_ATLAS13(SM); };
215 obsThFactory["Hobs_ggF_H_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_tautau_CMS13(SM); };
216 obsThFactory["Hobs_bbF_H_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bbF_H_tautau_CMS13(SM); };
217 obsThFactory["Hobs_pp_H_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_gaga_ATLAS13(SM); };
218 obsThFactory["Hobs_ggF_H_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_gaga_CMS13(SM); };
219 obsThFactory["Hobs_pp_H_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_Zga_llga_ATLAS13(SM); };
220 obsThFactory["Hobs_ggF_H_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_Zga_llga_ATLAS13(SM); };
221 obsThFactory["Hobs_pp_H_Zga_llga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_Zga_llga_CMS13(SM); };
222 obsThFactory["Hobs_pp_H_Zga_qqga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_Zga_qqga_CMS13(SM); };
223 obsThFactory["Hobs_ggF_H_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_Zga_CMS13(SM); };
224 obsThFactory["Hobs_ggF_H_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_llllnunu_ATLAS13(SM); };
225 obsThFactory["Hobs_VBF_H_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_llllnunu_ATLAS13(SM); };
226 obsThFactory["Hobs_ggF_H_ZZ_llnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_llnunu_ATLAS13(SM); };
227 obsThFactory["Hobs_pp_H_ZZ_llnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_ZZ_llnunu_CMS13(SM); };
228 obsThFactory["Hobs_ggF_H_ZZ_llnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_llnunu_CMS13(SM); };
229 obsThFactory["Hobs_VBF_H_ZZ_llnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_llnunu_CMS13(SM); };
230 obsThFactory["Hobs_ggF_H_ZZ_llll_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_llll_ATLAS13(SM); };
231 obsThFactory["Hobs_VBF_H_ZZ_llll_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_llll_ATLAS13(SM); };
232 obsThFactory["Hobs_pp_H_ZZ_llll_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_ZZ_llll_CMS13(SM); };
233 obsThFactory["Hobs_VBF_VH_H_ZZ_llll_CMS13"] = [](const StandardModel& SM) { return new Hobs_VBF_VH_H_ZZ_llll_CMS13(SM); };
234 obsThFactory["Hobs_ggF_H_ZZ_qqllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_qqllnunu_ATLAS13(SM); };
235 obsThFactory["Hobs_VBF_H_ZZ_qqllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_qqllnunu_ATLAS13(SM); };
236 obsThFactory["Hobs_ggF_H_ZZ_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_llqq_ATLAS13(SM); };
237 obsThFactory["Hobs_VBF_H_ZZ_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_ZZ_llqq_ATLAS13(SM); };
238 obsThFactory["Hobs_ggF_H_ZZ_nunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_ZZ_nunuqq_ATLAS13(SM); };
239 obsThFactory["Hobs_pp_H_ZZ_llqq_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_ZZ_llqq_CMS13(SM); };
240 obsThFactory["Hobs_ggF_H_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_WW_lnuqq_ATLAS13(SM); };
241 obsThFactory["Hobs_VBF_H_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_WW_lnuqq_ATLAS13(SM); };
242 obsThFactory["Hobs_ggF_H_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_WW_enumunu_ATLAS13(SM); };
243 obsThFactory["Hobs_VBF_H_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VBF_H_WW_enumunu_ATLAS13(SM); };
244 obsThFactory["Hobs_ggF_VBF_H_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_VBF_H_WW_lnulnu_CMS13(SM); };
245 obsThFactory["Hobs_pp_H_VV_qqqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_VV_qqqq_ATLAS13(SM); };
246 obsThFactory["Hobs_pp_H_hh_bbgaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbgaga_ATLAS13(SM); };
247 obsThFactory["Hobs_pp_H_hh_bbgaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbgaga_CMS13(SM); };
248 obsThFactory["Hobs_pp_H_hh_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbbb_ATLAS13(SM); };
249 obsThFactory["Hobs_pp_H_hh_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbbb_CMS13(SM); };
250 obsThFactory["Hobs_ggF_H_hh_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_hh_bbbb_CMS13(SM); };
251 obsThFactory["Hobs_ggF_H_hh_gagaWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_H_hh_gagaWW_ATLAS13(SM); };
252 obsThFactory["Hobs_pp_H_hh_bbtautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbtautau_CMS13(SM); };
253 obsThFactory["Hobs_pp_H_hh_bbtautau1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbtautau1_CMS13(SM); };
254 obsThFactory["Hobs_pp_H_hh_bblnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bblnulnu_CMS13(SM); };
255 obsThFactory["Hobs_pp_H_hh_bbVV_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_hh_bbVV_CMS13(SM); };
256 obsThFactory["Hobs_pp_H_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H_bb_CMS13(SM); };
257 obsThFactory["Robs_ttF_H_tt_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ttF_H_tt_ATLAS13(SM); };
258 obsThFactory["Robs_bbF_H_tt_ATLAS13"] = [](const StandardModel& SM) { return new Robs_bbF_H_tt_ATLAS13(SM); };
259 obsThFactory["Robs_ggF_H_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_tautau_ATLAS13(SM); };
260 obsThFactory["Robs_bbF_H_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Robs_bbF_H_tautau_ATLAS13(SM); };
261 obsThFactory["Robs_ggF_H_tautau_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_tautau_CMS13(SM); };
262 obsThFactory["Robs_bbF_H_tautau_CMS13"] = [](const StandardModel& SM) { return new Robs_bbF_H_tautau_CMS13(SM); };
263 obsThFactory["Robs_pp_H_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_H_gaga_ATLAS13(SM); };
264 obsThFactory["Robs_ggF_H_gaga_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_gaga_CMS13(SM); };
265 obsThFactory["Robs_pp_H_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_H_Zga_llga_ATLAS13(SM); };
266 obsThFactory["Robs_pp_H_Zga_llga_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_Zga_llga_CMS13(SM); };
267 obsThFactory["Robs_pp_H_Zga_qqga_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_Zga_qqga_CMS13(SM); };
268 obsThFactory["Robs_ggF_H_Zga_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_Zga_CMS13(SM); };
269 obsThFactory["Robs_ggF_H_ZZ_llnunu_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_ZZ_llnunu_ATLAS13(SM); };
270 obsThFactory["Robs_ggF_H_ZZ_llll_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_ZZ_llll_ATLAS13(SM); };
271 obsThFactory["Robs_VBF_H_ZZ_llll_ATLAS13"] = [](const StandardModel& SM) { return new Robs_VBF_H_ZZ_llll_ATLAS13(SM); };
272 obsThFactory["Robs_pp_H_ZZ_llll_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_ZZ_llll_CMS13(SM); };
273 obsThFactory["Robs_VBF_VH_H_ZZ_llll_CMS13"] = [](const StandardModel& SM) { return new Robs_VBF_VH_H_ZZ_llll_CMS13(SM); };
274 obsThFactory["Robs_ggF_H_ZZ_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_ZZ_llqq_ATLAS13(SM); };
275 obsThFactory["Robs_VBF_H_ZZ_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Robs_VBF_H_ZZ_llqq_ATLAS13(SM); };
276 obsThFactory["Robs_ggF_H_ZZ_nunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_ZZ_nunuqq_ATLAS13(SM); };
277 obsThFactory["Robs_pp_H_ZZ_llqq_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_ZZ_llqq_CMS13(SM); };
278 obsThFactory["Robs_ggF_H_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_WW_lnuqq_ATLAS13(SM); };
279 obsThFactory["Robs_ggF_H_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_WW_enumunu_ATLAS13(SM); };
280 obsThFactory["Robs_VBF_H_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Robs_VBF_H_WW_enumunu_ATLAS13(SM); };
281 obsThFactory["Robs_ggF_VBF_H_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_VBF_H_WW_lnulnu_CMS13(SM); };
282 obsThFactory["Robs_pp_H_hh_bbgaga_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbgaga_ATLAS13(SM); };
283 obsThFactory["Robs_pp_H_hh_bbgaga_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbgaga_CMS13(SM); };
284 obsThFactory["Robs_pp_H_hh_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbbb_ATLAS13(SM); };
285 obsThFactory["Robs_pp_H_hh_bbbb_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbbb_CMS13(SM); };
286 obsThFactory["Robs_ggF_H_hh_bbbb_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_hh_bbbb_CMS13(SM); };
287 obsThFactory["Robs_ggF_H_hh_gagaWW_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_H_hh_gagaWW_ATLAS13(SM); };
288 obsThFactory["Robs_pp_H_hh_bbtautau_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbtautau_CMS13(SM); };
289 obsThFactory["Robs_pp_H_hh_bbtautau1_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbtautau1_CMS13(SM); };
290 obsThFactory["Robs_pp_H_hh_bblnulnu_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bblnulnu_CMS13(SM); };
291 obsThFactory["Robs_pp_H_hh_bbVV_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_hh_bbVV_CMS13(SM); };
292 obsThFactory["Robs_pp_H_bb_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_H_bb_CMS13(SM); };
293 obsThFactory["log10_ggF_H_tautau_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_tautau_TH13(SM); };
294 obsThFactory["log10_bbF_H_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bbF_H_tautau_TH13(SM); };
295 obsThFactory["log10_pp_H_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_gaga_TH13(SM); };
296 obsThFactory["log10_ggF_H_gaga_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_gaga_TH13(SM); };
297 obsThFactory["log10_pp_H_Zga_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_Zga_TH13(SM); };
298 obsThFactory["log10_ggF_H_Zga_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_Zga_TH13(SM); };
299 obsThFactory["log10_pp_H_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_ZZ_TH13(SM); };
300 obsThFactory["log10_ggF_H_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_ZZ_TH13(SM); };
301 obsThFactory["log10_VBF_H_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_VBF_H_ZZ_TH13(SM); };
302 obsThFactory["log10_ggF_H_ZZ_llll_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_ZZ_llll_TH13(SM); };
303 obsThFactory["log10_VBF_H_ZZ_llll_TH13"] = [](const StandardModel& SM) { return new log10_VBF_H_ZZ_llll_TH13(SM); };
304 obsThFactory["log10_pp_H_ZZ_llll_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_ZZ_llll_TH13(SM); };
305 obsThFactory["log10_VBF_VH_H_ZZ_llll_TH13"] = [](const StandardModel& SM) { return new log10_VBF_VH_H_ZZ_llll_TH13(SM); };
306 obsThFactory["log10_ggF_H_WW_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_WW_TH13(SM); };
307 obsThFactory["log10_VBF_H_WW_TH13"] = [](const StandardModel& SM) { return new log10_VBF_H_WW_TH13(SM); };
308 obsThFactory["log10_ggF_VBF_H_WW_lnulnu_TH13"] = [](const StandardModel& SM) { return new log10_ggF_VBF_H_WW_lnulnu_TH13(SM); };
309 obsThFactory["log10_ggF_H_hh_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_hh_TH13(SM); };
310 obsThFactory["log10_pp_H_hh_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_TH13(SM); };
311 obsThFactory["log10_pp_H_hh_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_bbbb_TH13(SM); };
312 obsThFactory["log10_ggF_H_hh_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_ggF_H_hh_bbbb_TH13(SM); };
313 obsThFactory["log10_pp_H_hh_gagabb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_gagabb_TH13(SM); };
314 obsThFactory["log10_pp_H_hh_bbtautau_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_bbtautau_TH13(SM); };
315 obsThFactory["log10_pp_H_hh_bblnulnu_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_bblnulnu_TH13(SM); };
316 obsThFactory["log10_pp_H_hh_bbVV_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_hh_bbVV_TH13(SM); };
317 obsThFactory["log10_tt_H_tt_TH13"] = [](const StandardModel& SM) { return new log10_tt_H_tt_TH13(SM); };
318 obsThFactory["log10_bb_H_tt_TH13"] = [](const StandardModel& SM) { return new log10_bb_H_tt_TH13(SM); };
319 obsThFactory["log10_pp_H_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H_bb_TH13(SM); };
320 obsThFactory["Gamma_HH_THDM"] = [](const StandardModel& SM) { return new Gamma_HH_THDM(SM); };
321 obsThFactory["rHH_gg_THDM"] = [](const StandardModel& SM) { return new rHH_gg_THDM(SM); };
322 obsThFactory["BR_HH_hh_THDM"] = [](const StandardModel& SM) { return new BR_HH_hh_THDM(SM); };
323 obsThFactory["BR_HH_AA_THDM"] = [](const StandardModel& SM) { return new BR_HH_AA_THDM(SM); };
324 obsThFactory["BR_HH_HpHm_THDM"] = [](const StandardModel& SM) { return new BR_HH_HpHm_THDM(SM); };
325 obsThFactory["BR_HH_AZ_THDM"] = [](const StandardModel& SM) { return new BR_HH_AZ_THDM(SM); };
326 obsThFactory["BR_HH_HpW_THDM"] = [](const StandardModel& SM) { return new BR_HH_HpW_THDM(SM); };
327
328 obsThFactory["Hobs_ggF_A_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_tautau_ATLAS8(SM); };
329 obsThFactory["Hobs_ggF_A_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_tautau_CMS8(SM); };
330 obsThFactory["Hobs_bbF_A_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bbF_A_tautau_ATLAS8(SM); };
331 obsThFactory["Hobs_bbF_A_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bbF_A_tautau_CMS8(SM); };
332 obsThFactory["Hobs_pp_A_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_A_gaga_ATLAS8(SM); };
333 obsThFactory["Hobs_ggF_A_gaga_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_gaga_CMS8(SM); };
334 obsThFactory["Hobs_pp_A_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_A_Zga_llga_ATLAS8(SM); };
335 obsThFactory["Hobs_pp_A_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_A_Zga_llga_CMS8(SM); };
336 obsThFactory["Hobs_ggF_A_hZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_hZ_bbll_CMS8(SM); };
337 obsThFactory["Hobs_ggF_A_hZ_bbZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_hZ_bbZ_ATLAS8(SM); };
338 obsThFactory["Hobs_ggF_A_hZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_hZ_tautaull_CMS8(SM); };
339 obsThFactory["Hobs_ggF_A_hZ_tautauZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_hZ_tautauZ_ATLAS8(SM); };
340 obsThFactory["Hobs_ggF_A_tt_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_ggF_A_tt_ATLAS8(SM); };
341 obsThFactory["Hobs_bbF_A_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bbF_A_bb_CMS8(SM); };
342 obsThFactory["Hobs_pp_A_HZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_A_HZ_bbll_CMS8(SM); };
343 obsThFactory["Hobs_pp_A_HZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_A_HZ_tautaull_CMS8(SM); };
344 obsThFactory["Robs_ggF_A_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_tautau_ATLAS8(SM); };
345 obsThFactory["Robs_ggF_A_tautau_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_tautau_CMS8(SM); };
346 obsThFactory["Robs_bbF_A_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Robs_bbF_A_tautau_ATLAS8(SM); };
347 obsThFactory["Robs_bbF_A_tautau_CMS8"] = [](const StandardModel& SM) { return new Robs_bbF_A_tautau_CMS8(SM); };
348 obsThFactory["Robs_pp_A_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_A_gaga_ATLAS8(SM); };
349 obsThFactory["Robs_ggF_A_gaga_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_gaga_CMS8(SM); };
350 obsThFactory["Robs_pp_A_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_A_Zga_llga_ATLAS8(SM); };
351 obsThFactory["Robs_pp_A_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_A_Zga_llga_CMS8(SM); };
352 obsThFactory["Robs_ggF_A_hZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_hZ_bbll_CMS8(SM); };
353 obsThFactory["Robs_ggF_A_hZ_bbZ_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_hZ_bbZ_ATLAS8(SM); };
354 obsThFactory["Robs_ggF_A_hZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_hZ_tautaull_CMS8(SM); };
355 obsThFactory["Robs_ggF_A_hZ_tautauZ_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_hZ_tautauZ_ATLAS8(SM); };
356 obsThFactory["Robs_ggF_A_tt_ATLAS8"] = [](const StandardModel& SM) { return new Robs_ggF_A_tt_ATLAS8(SM); };
357 obsThFactory["Robs_bbF_A_bb_CMS8"] = [](const StandardModel& SM) { return new Robs_bbF_A_bb_CMS8(SM); };
358 obsThFactory["Robs_pp_A_HZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_A_HZ_bbll_CMS8(SM); };
359 obsThFactory["Robs_pp_A_HZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_A_HZ_tautaull_CMS8(SM); };
360 obsThFactory["log10_ggF_A_tautau_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_tautau_TH8(SM); };
361 obsThFactory["log10_bbF_A_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bbF_A_tautau_TH8(SM); };
362 obsThFactory["log10_pp_A_gaga_TH8"] = [](const StandardModel& SM) { return new log10_pp_A_gaga_TH8(SM); };
363 obsThFactory["log10_ggF_A_gaga_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_gaga_TH8(SM); };
364 obsThFactory["log10_pp_A_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_A_Zga_llga_TH8(SM); };
365 obsThFactory["log10_ggF_A_hZ_bbll_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_hZ_bbll_TH8(SM); };
366 obsThFactory["log10_ggF_A_hZ_bbZ_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_hZ_bbZ_TH8(SM); };
367 obsThFactory["log10_ggF_A_hZ_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_hZ_tautaull_TH8(SM); };
368 obsThFactory["log10_ggF_A_hZ_tautauZ_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_hZ_tautauZ_TH8(SM); };
369 obsThFactory["log10_ggF_A_tt_TH8"] = [](const StandardModel& SM) { return new log10_ggF_A_tt_TH8(SM); };
370 obsThFactory["log10_bbF_A_bb_TH8"] = [](const StandardModel& SM) { return new log10_bbF_A_bb_TH8(SM); };
371 obsThFactory["log10_pp_A_HZ_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_A_HZ_bbll_TH8(SM); };
372 obsThFactory["log10_pp_A_HZ_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_pp_A_HZ_tautaull_TH8(SM); };
373 obsThFactory["Hobs_ttF_A_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ttF_A_tt_ATLAS13(SM); };
374 obsThFactory["Hobs_bbF_A_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bbF_A_tt_ATLAS13(SM); };
375 obsThFactory["Hobs_ggF_A_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_tautau_ATLAS13(SM); };
376 obsThFactory["Hobs_bbF_A_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bbF_A_tautau_ATLAS13(SM); };
377 obsThFactory["Hobs_ggF_A_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_tautau_CMS13(SM); };
378 obsThFactory["Hobs_bbF_A_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bbF_A_tautau_CMS13(SM); };
379 obsThFactory["Hobs_pp_A_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_A_gaga_ATLAS13(SM); };
380 obsThFactory["Hobs_ggF_A_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_gaga_CMS13(SM); };
381 obsThFactory["Hobs_pp_A_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_A_Zga_llga_ATLAS13(SM); };
382 obsThFactory["Hobs_ggF_A_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_Zga_llga_ATLAS13(SM); };
383 obsThFactory["Hobs_pp_A_Zga_llga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_A_Zga_llga_CMS13(SM); };
384 obsThFactory["Hobs_pp_A_Zga_qqga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_A_Zga_qqga_CMS13(SM); };
385 obsThFactory["Hobs_ggF_A_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_Zga_CMS13(SM); };
386 obsThFactory["Hobs_ggF_A_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_ggF_A_hZ_bbZ_ATLAS13(SM); };
387 obsThFactory["Hobs_bbF_A_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bbF_A_hZ_bbZ_ATLAS13(SM); };
388 obsThFactory["Hobs_pp_A_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_A_bb_CMS13(SM); };
389 obsThFactory["Robs_ttF_A_tt_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ttF_A_tt_ATLAS13(SM); };
390 obsThFactory["Robs_bbF_A_tt_ATLAS13"] = [](const StandardModel& SM) { return new Robs_bbF_A_tt_ATLAS13(SM); };
391 obsThFactory["Robs_ggF_A_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_A_tautau_ATLAS13(SM); };
392 obsThFactory["Robs_bbF_A_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Robs_bbF_A_tautau_ATLAS13(SM); };
393 obsThFactory["Robs_ggF_A_tautau_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_A_tautau_CMS13(SM); };
394 obsThFactory["Robs_bbF_A_tautau_CMS13"] = [](const StandardModel& SM) { return new Robs_bbF_A_tautau_CMS13(SM); };
395 obsThFactory["Robs_pp_A_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_A_gaga_ATLAS13(SM); };
396 obsThFactory["Robs_ggF_A_gaga_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_A_gaga_CMS13(SM); };
397 obsThFactory["Robs_pp_A_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_A_Zga_llga_ATLAS13(SM); };
398 obsThFactory["Robs_pp_A_Zga_llga_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_A_Zga_llga_CMS13(SM); };
399 obsThFactory["Robs_pp_A_Zga_qqga_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_A_Zga_qqga_CMS13(SM); };
400 obsThFactory["Robs_ggF_A_Zga_CMS13"] = [](const StandardModel& SM) { return new Robs_ggF_A_Zga_CMS13(SM); };
401 obsThFactory["Robs_ggF_A_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Robs_ggF_A_hZ_bbZ_ATLAS13(SM); };
402 obsThFactory["Robs_bbF_A_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Robs_bbF_A_hZ_bbZ_ATLAS13(SM); };
403 obsThFactory["Robs_pp_A_bb_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_A_bb_CMS13(SM); };
404 obsThFactory["log10_ggF_A_tautau_TH13"] = [](const StandardModel& SM) { return new log10_ggF_A_tautau_TH13(SM); };
405 obsThFactory["log10_bbF_A_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bbF_A_tautau_TH13(SM); };
406 obsThFactory["log10_pp_A_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_A_gaga_TH13(SM); };
407 obsThFactory["log10_ggF_A_gaga_TH13"] = [](const StandardModel& SM) { return new log10_ggF_A_gaga_TH13(SM); };
408 obsThFactory["log10_pp_A_Zga_TH13"] = [](const StandardModel& SM) { return new log10_pp_A_Zga_TH13(SM); };
409 obsThFactory["log10_ggF_A_Zga_TH13"] = [](const StandardModel& SM) { return new log10_ggF_A_Zga_TH13(SM); };
410 obsThFactory["log10_ggF_A_hZ_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_ggF_A_hZ_bbZ_TH13(SM); };
411 obsThFactory["log10_bbF_A_hZ_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_bbF_A_hZ_bbZ_TH13(SM); };
412 obsThFactory["log10_ttF_A_tt_TH13"] = [](const StandardModel& SM) { return new log10_ttF_A_tt_TH13(SM); };
413 obsThFactory["log10_bbF_A_tt_TH13"] = [](const StandardModel& SM) { return new log10_bbF_A_tt_TH13(SM); };
414 obsThFactory["log10_pp_A_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_A_bb_TH13(SM); };
415 obsThFactory["Gamma_A_THDM"] = [](const StandardModel& SM) { return new Gamma_A_THDM(SM); };
416 obsThFactory["rA_gg_THDM"] = [](const StandardModel& SM) { return new rA_gg_THDM(SM); };
417 obsThFactory["BR_A_HZ_THDM"] = [](const StandardModel& SM) { return new BR_A_HZ_THDM(SM); };
418 obsThFactory["BR_A_hZ_THDM"] = [](const StandardModel& SM) { return new BR_A_hZ_THDM(SM); };
419 obsThFactory["BR_A_HpW_THDM"] = [](const StandardModel& SM) { return new BR_A_HpW_THDM(SM); };
420
421 obsThFactory["Hobs_pp_Hpm_taunu_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_ATLAS8(SM); };
422 obsThFactory["Hobs_pp_Hp_taunu_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_taunu_CMS8(SM); };
423 obsThFactory["Hobs_pp_Hpm_tb_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_tb_ATLAS8(SM); };
424 obsThFactory["Hobs_pp_Hp_tb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_tb_CMS8(SM); };
425 obsThFactory["Hobs_pp_Hpm_taunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_ATLAS13(SM); };
426 obsThFactory["Hobs_pp_Hpm_taunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_CMS13(SM); };
427 obsThFactory["Hobs_pp_Hp_tb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_tb_ATLAS13(SM); };
428 obsThFactory["Hobs_pp_Hp_tb_ATLAS13_1"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_tb_ATLAS13_1(SM); };
429 obsThFactory["Hobs_pp_Hp_tb_ATLAS13_2"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_tb_ATLAS13_2(SM); };
430 obsThFactory["Robs_pp_Hpm_taunu_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_Hpm_taunu_ATLAS8(SM); };
431 obsThFactory["Robs_pp_Hp_taunu_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_Hp_taunu_CMS8(SM); };
432 obsThFactory["Robs_pp_Hpm_tb_ATLAS8"] = [](const StandardModel& SM) { return new Robs_pp_Hpm_tb_ATLAS8(SM); };
433 obsThFactory["Robs_pp_Hp_tb_CMS8"] = [](const StandardModel& SM) { return new Robs_pp_Hp_tb_CMS8(SM); };
434 obsThFactory["Robs_pp_Hpm_taunu_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_Hpm_taunu_ATLAS13(SM); };
435 obsThFactory["Robs_pp_Hpm_taunu_CMS13"] = [](const StandardModel& SM) { return new Robs_pp_Hpm_taunu_CMS13(SM); };
436 obsThFactory["Robs_pp_Hp_tb_ATLAS13"] = [](const StandardModel& SM) { return new Robs_pp_Hp_tb_ATLAS13(SM); };
437 obsThFactory["Robs_pp_Hp_tb_ATLAS13_1"] = [](const StandardModel& SM) { return new Robs_pp_Hp_tb_ATLAS13_1(SM); };
438 obsThFactory["Robs_pp_Hp_tb_ATLAS13_2"] = [](const StandardModel& SM) { return new Robs_pp_Hp_tb_ATLAS13_2(SM); };
439 obsThFactory["log10_pp_Hpm_taunu_TH8"] = [](const StandardModel& SM) { return new log10_pp_Hpm_taunu_TH8(SM); };
440 obsThFactory["log10_pp_Hp_tb_TH8"] = [](const StandardModel& SM) { return new log10_pp_Hp_tb_TH8(SM); };
441 obsThFactory["log10_pp_Hpm_taunu_TH13"] = [](const StandardModel& SM) { return new log10_pp_Hpm_taunu_TH13(SM); };
442 obsThFactory["log10_pp_Hp_tb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Hp_tb_TH13(SM); };
443 obsThFactory["Gamma_Hp_THDM"] = [](const StandardModel& SM) { return new Gamma_Hp_THDM(SM); };
444
445 obsThFactory["tanbeta"] = [](const StandardModel& SM) { return new tanbeta(SM); };
446 obsThFactory["mHl_THDM"] = [](const StandardModel& SM) { return new mass_mHl(SM); };
447 obsThFactory["mHh"] = [](const StandardModel& SM) { return new mass_mHh(SM); };
448 obsThFactory["mA"] = [](const StandardModel& SM) { return new mass_mA(SM); };
449 obsThFactory["mHp"] = [](const StandardModel& SM) { return new mass_mHp(SM); };
450 obsThFactory["mHlmmA"] = [](const StandardModel& SM) { return new massdifference_mHlmmA(SM); };
451 obsThFactory["mAmmHl"] = [](const StandardModel& SM) { return new massdifference_mAmmHl(SM); };
452 obsThFactory["mHlmmHp"] = [](const StandardModel& SM) { return new massdifference_mHlmmHp(SM); };
453 obsThFactory["mHpmmHl"] = [](const StandardModel& SM) { return new massdifference_mHpmmHl(SM); };
454 obsThFactory["mHhmmA"] = [](const StandardModel& SM) { return new massdifference_mHhmmA(SM); };
455 obsThFactory["mAmmHh"] = [](const StandardModel& SM) { return new massdifference_mAmmHh(SM); };
456 obsThFactory["mHhmmHp"] = [](const StandardModel& SM) { return new massdifference_mHhmmHp(SM); };
457 obsThFactory["mHpmmHh"] = [](const StandardModel& SM) { return new massdifference_mHpmmHh(SM); };
458 obsThFactory["mAmmHp"] = [](const StandardModel& SM) { return new massdifference_mAmmHp(SM); };
459 obsThFactory["mHpmmA"] = [](const StandardModel& SM) { return new massdifference_mHpmmA(SM); };
460 obsThFactory["m11_2"] = [](const StandardModel& SM) { return new m11_2(SM); };
461 obsThFactory["m22_2"] = [](const StandardModel& SM) { return new m22_2(SM); };
462 obsThFactory["lambda1"] = [](const StandardModel& SM) { return new lambda1(SM); };
463 obsThFactory["lambda2"] = [](const StandardModel& SM) { return new lambda2(SM); };
464 obsThFactory["lambda3"] = [](const StandardModel& SM) { return new lambda3(SM); };
465 obsThFactory["lambda4"] = [](const StandardModel& SM) { return new lambda4(SM); };
466 obsThFactory["lambda5"] = [](const StandardModel& SM) { return new lambda5(SM); };
467 obsThFactory["lambda345"] = [](const StandardModel& SM) { return new lambda345(SM); };
468 obsThFactory["g_hhh"] = [](const StandardModel& SM) { return new g_hhh(SM); };
469 obsThFactory["g_hhHh"] = [](const StandardModel& SM) { return new g_hhHh(SM); };
470 obsThFactory["g_hHhHh"] = [](const StandardModel& SM) { return new g_hHhHh(SM); };
471 obsThFactory["g_HhHhHh"] = [](const StandardModel& SM) { return new g_HhHhHh(SM); };
472 obsThFactory["g_hAA"] = [](const StandardModel& SM) { return new g_hAA(SM); };
473 obsThFactory["g_HhAA"] = [](const StandardModel& SM) { return new g_HhAA(SM); };
474 obsThFactory["g_hHpHm"] = [](const StandardModel& SM) { return new g_hHpHm(SM); };
475 obsThFactory["g_HhHpHm"] = [](const StandardModel& SM) { return new g_HhHpHm(SM); };
476 obsThFactory["Y1_THDM"] = [](const StandardModel& SM) { return new Y1_THDM(SM); };
477 obsThFactory["Y2_THDM"] = [](const StandardModel& SM) { return new Y2_THDM(SM); };
478 obsThFactory["Y3_THDM"] = [](const StandardModel& SM) { return new Y3_THDM(SM); };
479 obsThFactory["Z1_THDM"] = [](const StandardModel& SM) { return new Z1_THDM(SM); };
480 obsThFactory["Z2_THDM"] = [](const StandardModel& SM) { return new Z2_THDM(SM); };
481 obsThFactory["Z3_THDM"] = [](const StandardModel& SM) { return new Z3_THDM(SM); };
482 obsThFactory["Z4_THDM"] = [](const StandardModel& SM) { return new Z4_THDM(SM); };
483 obsThFactory["Z5_THDM"] = [](const StandardModel& SM) { return new Z5_THDM(SM); };
484 obsThFactory["Z6_THDM"] = [](const StandardModel& SM) { return new Z6_THDM(SM); };
485 obsThFactory["Z7_THDM"] = [](const StandardModel& SM) { return new Z7_THDM(SM); };
486 obsThFactory["xi0_THDM"] = [](const StandardModel& SM) { return new xi0_THDM(SM); };
487 obsThFactory["xi1_THDM"] = [](const StandardModel& SM) { return new xi1_THDM(SM); };
488 obsThFactory["xi3_THDM"] = [](const StandardModel& SM) { return new xi3_THDM(SM); };
489 obsThFactory["eta00_THDM"] = [](const StandardModel& SM) { return new eta00_THDM(SM); };
490 obsThFactory["eta3_THDM"] = [](const StandardModel& SM) { return new eta3_THDM(SM); };
491 obsThFactory["E11_THDM"] = [](const StandardModel& SM) { return new E11_THDM(SM); };
492 obsThFactory["E22_THDM"] = [](const StandardModel& SM) { return new E22_THDM(SM); };
493 obsThFactory["E33_THDM"] = [](const StandardModel& SM) { return new E33_THDM(SM); };
494 obsThFactory["HHlambda1"] = [](const StandardModel& SM) { return new HHlambda1(SM); };
495 obsThFactory["HHlambda2"] = [](const StandardModel& SM) { return new HHlambda2(SM); };
496 obsThFactory["HHlambda3"] = [](const StandardModel& SM) { return new HHlambda3(SM); };
497 obsThFactory["HHlambda4"] = [](const StandardModel& SM) { return new HHlambda4(SM); };
498 obsThFactory["HHlambda5"] = [](const StandardModel& SM) { return new HHlambda5(SM); };
499 obsThFactory["HHlambda6"] = [](const StandardModel& SM) { return new HHlambda6(SM); };
500
501 obsThFactory["positivity1"] = [](const StandardModel& SM) { return new positivity1(SM); };
502 obsThFactory["positivity2"] = [](const StandardModel& SM) { return new positivity2(SM); };
503
504 obsThFactory["unitarity1"] = [](const StandardModel& SM) { return new unitarity1(SM); };
505 obsThFactory["unitarity2"] = [](const StandardModel& SM) { return new unitarity2(SM); };
506 obsThFactory["unitarity3"] = [](const StandardModel& SM) { return new unitarity3(SM); };
507 obsThFactory["unitarity4"] = [](const StandardModel& SM) { return new unitarity4(SM); };
508 obsThFactory["unitarity5"] = [](const StandardModel& SM) { return new unitarity5(SM); };
509 obsThFactory["unitarity6"] = [](const StandardModel& SM) { return new unitarity6(SM); };
510 obsThFactory["unitarity7"] = [](const StandardModel& SM) { return new unitarity7(SM); };
511 obsThFactory["unitarity8"] = [](const StandardModel& SM) { return new unitarity8(SM); };
512 obsThFactory["unitarity9"] = [](const StandardModel& SM) { return new unitarity9(SM); };
513 obsThFactory["unitarity10"] = [](const StandardModel& SM) { return new unitarity10(SM); };
514 obsThFactory["unitarity11"] = [](const StandardModel& SM) { return new unitarity11(SM); };
515 obsThFactory["unitarity12"] = [](const StandardModel& SM) { return new unitarity12(SM); };
516
517 obsThFactory["DeltaS"] = [](const StandardModel& SM) { return new DeltaS(SM); };
518 obsThFactory["DeltaT"] = [](const StandardModel& SM) { return new DeltaT(SM); };
519 obsThFactory["DeltaU"] = [](const StandardModel& SM) { return new DeltaU(SM); };
520
521 obsThFactory["B_BtoXsgammaTHDM"] = [](const StandardModel& SM) { return new bsgammaTHDM(SM); };
522// obsThFactory["BR_BsmumuTHDM"] = boost::factory<BR_BsmumuTHDM*>();
523// obsThFactory["BR_BdmumuTHDM"] = boost::factory<BR_BdmumuTHDM*>();
524 obsThFactory["RBDstartaunu"] = [](const StandardModel& SM) { return new RBDstartaunu(SM); };
525 obsThFactory["RBDtaunu"] = [](const StandardModel& SM) { return new RBDtaunu(SM); };
526 obsThFactory["obsBDtaunu_SM"] = [](const StandardModel& SM) { return new obsBDtaunu_SM(SM); };
527 obsThFactory["obsBDtaunu_A"] = [](const StandardModel& SM) { return new obsBDtaunu_A(SM); };
528 obsThFactory["obsBDtaunu_B"] = [](const StandardModel& SM) { return new obsBDtaunu_B(SM); };
529 obsThFactory["obsBDstartaunu_SM"] = [](const StandardModel& SM) { return new obsBDstartaunu_SM(SM); };
530 obsThFactory["obsBDstartaunu_A"] = [](const StandardModel& SM) { return new obsBDstartaunu_A(SM); };
531 obsThFactory["obsBDstartaunu_B"] = [](const StandardModel& SM) { return new obsBDstartaunu_B(SM); };
532 obsThFactory["THDMgminus2_mu"] = [](const StandardModel& SM) { return new THDMgminus2_mu(SM); };
533
534 obsThFactory["Q_st"] = [](const StandardModel& SM) { return new Q_st(SM); };
535 obsThFactory["DeltaQ_THDM"] = [](const StandardModel& SM) { return new DeltaQ_THDM(SM); };
536 obsThFactory["g1atQ"] = [](const StandardModel& SM) { return new g1atQ(SM); };
537 obsThFactory["g2atQ"] = [](const StandardModel& SM) { return new g2atQ(SM); };
538 obsThFactory["g3atQ"] = [](const StandardModel& SM) { return new g3atQ(SM); };
539 obsThFactory["YtopatQ"] = [](const StandardModel& SM) { return new YtopatQ(SM); };
540 obsThFactory["YbottomatQ"] = [](const StandardModel& SM) { return new YbottomatQ(SM); };
541 obsThFactory["YtauatQ"] = [](const StandardModel& SM) { return new YtauatQ(SM); };
542 obsThFactory["m11_2atQ"] = [](const StandardModel& SM) { return new m11_2atQ(SM); };
543 obsThFactory["m22_2atQ"] = [](const StandardModel& SM) { return new m22_2atQ(SM); };
544 obsThFactory["m12_2atQ"] = [](const StandardModel& SM) { return new m12_2atQ(SM); };
545 obsThFactory["lambda1atQ"] = [](const StandardModel& SM) { return new lambda1atQ(SM); };
546 obsThFactory["lambda2atQ"] = [](const StandardModel& SM) { return new lambda2atQ(SM); };
547 obsThFactory["lambda3atQ"] = [](const StandardModel& SM) { return new lambda3atQ(SM); };
548 obsThFactory["lambda4atQ"] = [](const StandardModel& SM) { return new lambda4atQ(SM); };
549 obsThFactory["lambda5atQ"] = [](const StandardModel& SM) { return new lambda5atQ(SM); };
550
551 obsThFactory["unitaritya10odd"] = [](const StandardModel& SM) { return new unitarityNLO14(SM); };
552 obsThFactory["unitaritya11odd"] = [](const StandardModel& SM) { return new unitarityNLO24(SM); };
553 obsThFactory["unitaritya00evenp"] = [](const StandardModel& SM) { return new unitarityNLOev1(SM); };
554 obsThFactory["unitaritya00evenm"] = [](const StandardModel& SM) { return new unitarityNLOev2(SM); };
555 obsThFactory["unitaritya00oddp"] = [](const StandardModel& SM) { return new unitarityNLOev3(SM); };
556 obsThFactory["unitaritya00oddm"] = [](const StandardModel& SM) { return new unitarityNLOev4(SM); };
557 obsThFactory["unitaritya01evenp"] = [](const StandardModel& SM) { return new unitarityNLOev5(SM); };
558 obsThFactory["unitaritya01evenm"] = [](const StandardModel& SM) { return new unitarityNLOev6(SM); };
559 obsThFactory["unitaritya01oddp"] = [](const StandardModel& SM) { return new unitarityNLOev9(SM); };
560 obsThFactory["unitaritya01oddm"] = [](const StandardModel& SM) { return new unitarityNLOev10(SM); };
561 obsThFactory["unitaritya11evenp"] = [](const StandardModel& SM) { return new unitarityNLOev13(SM); };
562 obsThFactory["unitaritya11evenm"] = [](const StandardModel& SM) { return new unitarityNLOev14(SM); };
563 obsThFactory["unitarityRp1"] = [](const StandardModel& SM) { return new unitarityRp1(SM); };
564 obsThFactory["unitarityRp2"] = [](const StandardModel& SM) { return new unitarityRp2(SM); };
565 obsThFactory["unitarityRp3"] = [](const StandardModel& SM) { return new unitarityRp3(SM); };
566 obsThFactory["unitarityRp4"] = [](const StandardModel& SM) { return new unitarityRp4(SM); };
567 obsThFactory["unitarityRp5"] = [](const StandardModel& SM) { return new unitarityRp5(SM); };
568 obsThFactory["unitarityRp6"] = [](const StandardModel& SM) { return new unitarityRp6(SM); };
569 obsThFactory["unitarityRp9"] = [](const StandardModel& SM) { return new unitarityRp9(SM); };
570 obsThFactory["unitarityRp10"] = [](const StandardModel& SM) { return new unitarityRp10(SM); };
571 obsThFactory["unitarityRp13"] = [](const StandardModel& SM) { return new unitarityRp13(SM); };
572 obsThFactory["unitarityRp14"] = [](const StandardModel& SM) { return new unitarityRp14(SM); };
573 obsThFactory["unitarityRp19"] = [](const StandardModel& SM) { return new unitarityRp19(SM); };
574 obsThFactory["unitarityRp20"] = [](const StandardModel& SM) { return new unitarityRp20(SM); };
575 obsThFactory["unitarityR1"] = [](const StandardModel& SM) { return new unitarityR1(SM); };
576 obsThFactory["unitarityR2"] = [](const StandardModel& SM) { return new unitarityR2(SM); };
577 obsThFactory["unitarityR3"] = [](const StandardModel& SM) { return new unitarityR3(SM); };
578 obsThFactory["unitarityR4"] = [](const StandardModel& SM) { return new unitarityR4(SM); };
579 obsThFactory["unitarityR5"] = [](const StandardModel& SM) { return new unitarityR5(SM); };
580 obsThFactory["unitarityR6"] = [](const StandardModel& SM) { return new unitarityR6(SM); };
581 obsThFactory["unitarityR9"] = [](const StandardModel& SM) { return new unitarityR9(SM); };
582 obsThFactory["unitarityR10"] = [](const StandardModel& SM) { return new unitarityR10(SM); };
583 obsThFactory["unitarityR13"] = [](const StandardModel& SM) { return new unitarityR13(SM); };
584 obsThFactory["unitarityR14"] = [](const StandardModel& SM) { return new unitarityR14(SM); };
585 obsThFactory["unitarityR19"] = [](const StandardModel& SM) { return new unitarityR19(SM); };
586 obsThFactory["unitarityR20"] = [](const StandardModel& SM) { return new unitarityR20(SM); };
587 obsThFactory["unitaritya00evenpRe"] = [](const StandardModel& SM) { return new unitaritya00evenpRe(SM); };
588 obsThFactory["unitaritya00evenpIm"] = [](const StandardModel& SM) { return new unitaritya00evenpIm(SM); };
589 obsThFactory["unitaritya00evenmRe"] = [](const StandardModel& SM) { return new unitaritya00evenmRe(SM); };
590 obsThFactory["unitaritya00evenmIm"] = [](const StandardModel& SM) { return new unitaritya00evenmIm(SM); };
591 obsThFactory["unitaritya00oddpRe"] = [](const StandardModel& SM) { return new unitaritya00oddpRe(SM); };
592 obsThFactory["unitaritya00oddpIm"] = [](const StandardModel& SM) { return new unitaritya00oddpIm(SM); };
593 obsThFactory["unitaritya00oddmRe"] = [](const StandardModel& SM) { return new unitaritya00oddmRe(SM); };
594 obsThFactory["unitaritya00oddmIm"] = [](const StandardModel& SM) { return new unitaritya00oddmIm(SM); };
595 obsThFactory["unitaritya01evenpRe"] = [](const StandardModel& SM) { return new unitaritya01evenpRe(SM); };
596 obsThFactory["unitaritya01evenpIm"] = [](const StandardModel& SM) { return new unitaritya01evenpIm(SM); };
597 obsThFactory["unitaritya01evenmRe"] = [](const StandardModel& SM) { return new unitaritya01evenmRe(SM); };
598 obsThFactory["unitaritya01evenmIm"] = [](const StandardModel& SM) { return new unitaritya01evenmIm(SM); };
599 obsThFactory["unitaritya01oddpRe"] = [](const StandardModel& SM) { return new unitaritya01oddpRe(SM); };
600 obsThFactory["unitaritya01oddpIm"] = [](const StandardModel& SM) { return new unitaritya01oddpIm(SM); };
601 obsThFactory["unitaritya01oddmRe"] = [](const StandardModel& SM) { return new unitaritya01oddmRe(SM); };
602 obsThFactory["unitaritya01oddmIm"] = [](const StandardModel& SM) { return new unitaritya01oddmIm(SM); };
603 obsThFactory["unitaritya10oddRe"] = [](const StandardModel& SM) { return new unitaritya10oddRe(SM); };
604 obsThFactory["unitaritya10oddIm"] = [](const StandardModel& SM) { return new unitaritya10oddIm(SM); };
605 obsThFactory["unitaritya11evenpRe"] = [](const StandardModel& SM) { return new unitaritya11evenpRe(SM); };
606 obsThFactory["unitaritya11evenpIm"] = [](const StandardModel& SM) { return new unitaritya11evenpIm(SM); };
607 obsThFactory["unitaritya11evenmRe"] = [](const StandardModel& SM) { return new unitaritya11evenmRe(SM); };
608 obsThFactory["unitaritya11evenmIm"] = [](const StandardModel& SM) { return new unitaritya11evenmIm(SM); };
609 obsThFactory["unitaritya11oddRe"] = [](const StandardModel& SM) { return new unitaritya11oddRe(SM); };
610 obsThFactory["unitaritya11oddIm"] = [](const StandardModel& SM) { return new unitaritya11oddIm(SM); };
611
612 /* BEGIN: REMOVE FROM THE PACKAGE */
613 //----- GeneralTHDM observables -----
614 //obsThFactory["mH1"] = boost::factory<mH1_GTHDM*>(); //We have the map, no need of this
615 //obsThFactory["mH2"] = boost::factory<mH2_GTHDM*>(); //We have the map, no need of this
616 //obsThFactory["mH3"] = boost::factory<mH3_GTHDM*>(); //We have the map, no need of this
617 obsThFactory["m1_2"] = [](const StandardModel& SM) { return new m1_2(SM); }; //This seems to make sense for the case in which the NP Higgs is not the light one
618 obsThFactory["m2_2"] = [](const StandardModel& SM) { return new m2_2(SM); }; //Let's keep it for the moment but probably useless...
619 obsThFactory["m3_2"] = [](const StandardModel& SM) { return new m3_2(SM); };
620 //obsThFactory["mHp_GTHDM"] = boost::factory<mHp_GTHDM*>(); //We have the map, no need of this
621 obsThFactory["mH3mmH2"] = [](const StandardModel& SM) { return new mH3mmH2_GTHDM(SM); };
622 obsThFactory["mH3mmHp"] = [](const StandardModel& SM) { return new mH3mmHp_GTHDM(SM); };
623 obsThFactory["mH3mmH1"] = [](const StandardModel& SM) { return new mH3mmH1_GTHDM(SM); };
624 obsThFactory["mH2mmHp"] = [](const StandardModel& SM) { return new mH2mmHp_GTHDM(SM); };
625 obsThFactory["mH2mmH1"] = [](const StandardModel& SM) { return new mH2mmH1_GTHDM(SM); };
626 obsThFactory["mHpmmH1"] = [](const StandardModel& SM) { return new mHpmmH1_GTHDM(SM); };
627 //obsThFactory["mH1sq"] = boost::factory<mH1sq_GTHDM*>(); //We have the map, no need of this
628 //obsThFactory["mH2sq"] = boost::factory<mH2sq_GTHDM*>(); //We have the map, no need of this
629 //obsThFactory["mH3sq"] = boost::factory<mH3sq_GTHDM*>(); //We have the map, no need of this
630 obsThFactory["Msq11"] = [](const StandardModel& SM) { return new Msq11_GTHDM(SM); };
631 obsThFactory["Msq12"] = [](const StandardModel& SM) { return new Msq12_GTHDM(SM); };
632 obsThFactory["Msq13"] = [](const StandardModel& SM) { return new Msq13_GTHDM(SM); };
633 obsThFactory["Msq22"] = [](const StandardModel& SM) { return new Msq22_GTHDM(SM); };
634 obsThFactory["Msq23"] = [](const StandardModel& SM) { return new Msq23_GTHDM(SM); };
635 obsThFactory["Msq33"] = [](const StandardModel& SM) { return new Msq33_GTHDM(SM); };
636 obsThFactory["M2_GTHDM"] = [](const StandardModel& SM) { return new M2_GTHDM(SM); };
637 obsThFactory["m11_2_GTHDM"] = [](const StandardModel& SM) { return new m11_2_GTHDM(SM); };
638 obsThFactory["m22_2_GTHDM"] = [](const StandardModel& SM) { return new m22_2_GTHDM(SM); };
639 obsThFactory["Rem12_2_GTHDM"] = [](const StandardModel& SM) { return new Rem12_2_GTHDM(SM); };
640 obsThFactory["Imm12_2_GTHDM"] = [](const StandardModel& SM) { return new Imm12_2_GTHDM(SM); };
641 //obsThFactory["lambda1_GTHDM"] = boost::factory<lambda1_GTHDM*>();
642 //obsThFactory["lambda2_GTHDM"] = boost::factory<lambda2_GTHDM*>();
643 //obsThFactory["lambda3_GTHDM"] = boost::factory<lambda3_GTHDM*>();
644 //obsThFactory["lambda4_GTHDM"] = boost::factory<lambda4_GTHDM*>();
645 //obsThFactory["v1_GTHDM"] = boost::factory<v1_GTHDM*>();//v1 is the SM vev, I remove this observable
646 //obsThFactory["v2_GTHDM"] = boost::factory<v2_GTHDM*>(); //This doesn't make sense in this model
647 //obsThFactory["tanbeta"] = boost::factory<tanbeta_GTHDM*>();//This doesn't make sense in this model
648
649 //obsThFactory["lambda1H_GTHDM"] = boost::factory<lambda1H_GTHDM*>();
650 //obsThFactory["lambda2H_GTHDM"] = boost::factory<lambda2H_GTHDM*>();
651 //obsThFactory["lambda3H_GTHDM"] = boost::factory<lambda3H_GTHDM*>();
652 //obsThFactory["lambda4H_GTHDM"] = boost::factory<lambda4H_GTHDM*>();
653 //obsThFactory["Relambda5H_GTHDM"] = boost::factory<Relambda5H_GTHDM*>();
654 //obsThFactory["Imlambda5H_GTHDM"] = boost::factory<Imlambda5H_GTHDM*>();
655 //obsThFactory["Relambda6H_GTHDM"] = boost::factory<Relambda6H_GTHDM*>();
656 //obsThFactory["Imlambda6H_GTHDM"] = boost::factory<Imlambda6H_GTHDM*>();
657 //obsThFactory["Relambda7H_GTHDM"] = boost::factory<Relambda7H_GTHDM*>();
658 //obsThFactory["Imlambda7H_GTHDM"] = boost::factory<Imlambda7H_GTHDM*>();
659
660 obsThFactory["Gamma_h_GTHDM"] = [](const StandardModel& SM) { return new Gamma_h_GTHDM(SM); };
661 obsThFactory["BR_h_bb_GTHDM"] = [](const StandardModel& SM) { return new BR_h_bb_GTHDM(SM); };
662 obsThFactory["BR_h_gaga_GTHDM"] = [](const StandardModel& SM) { return new BR_h_gaga_GTHDM(SM); };
663 obsThFactory["BR_h_tautau_GTHDM"] = [](const StandardModel& SM) { return new BR_h_tautau_GTHDM(SM); };
664 obsThFactory["BR_h_inv_GTHDM"] = [](const StandardModel& SM) { return new BR_h_inv_GTHDM(SM); };
665 obsThFactory["Gamma_Z_inv_GTHDM"] = [](const StandardModel& SM) { return new Gamma_Z_inv_GTHDM(SM); };
666 obsThFactory["Gamma_W_inv_GTHDM"] = [](const StandardModel& SM) { return new Gamma_W_inv_GTHDM(SM); };
667 obsThFactory["Gamma_top_GTHDM"] = [](const StandardModel& SM) { return new Gamma_top_GTHDM(SM); };
668
669 obsThFactory["R11_GTHDM"]= [](const StandardModel& SM) { return new R11_GTHDM(SM); };
670 obsThFactory["R12_GTHDM"]= [](const StandardModel& SM) { return new R12_GTHDM(SM); };
671 obsThFactory["R13_GTHDM"]= [](const StandardModel& SM) { return new R13_GTHDM(SM); };
672 obsThFactory["R21_GTHDM"]= [](const StandardModel& SM) { return new R21_GTHDM(SM); };
673 obsThFactory["R22_GTHDM"]= [](const StandardModel& SM) { return new R22_GTHDM(SM); };
674 obsThFactory["R23_GTHDM"]= [](const StandardModel& SM) { return new R23_GTHDM(SM); };
675 obsThFactory["R31_GTHDM"]= [](const StandardModel& SM) { return new R31_GTHDM(SM); };
676 obsThFactory["R32_GTHDM"]= [](const StandardModel& SM) { return new R32_GTHDM(SM); };
677 obsThFactory["R33_GTHDM"]= [](const StandardModel& SM) { return new R33_GTHDM(SM); };
678
679 obsThFactory["cosalpha1"]= [](const StandardModel& SM) { return new cosalpha1_GTHDM(SM); };
680
681 obsThFactory["Q_stGTHDM"]= [](const StandardModel& SM) { return new Q_stGTHDM(SM); };
682 obsThFactory["DeltaQ_GTHDM"]= [](const StandardModel& SM) { return new DeltaQ_GTHDM(SM); };
683 obsThFactory["g1atQGTHDM"]= [](const StandardModel& SM) { return new g1atQGTHDM(SM); };
684 obsThFactory["g2atQGTHDM"]= [](const StandardModel& SM) { return new g2atQGTHDM(SM); };
685 obsThFactory["g3atQGTHDM"]= [](const StandardModel& SM) { return new g3atQGTHDM(SM); };
686 obsThFactory["etaU1atQGTHDM"]= [](const StandardModel& SM) { return new etaU1atQGTHDM(SM); };
687 obsThFactory["etaU2atQGTHDM"]= [](const StandardModel& SM) { return new etaU2atQGTHDM(SM); };
688 obsThFactory["etaD1atQGTHDM"]= [](const StandardModel& SM) { return new etaD1atQGTHDM(SM); };
689 obsThFactory["etaD2atQGTHDM"]= [](const StandardModel& SM) { return new etaD2atQGTHDM(SM); };
690 obsThFactory["etaL1atQGTHDM"]= [](const StandardModel& SM) { return new etaL1atQGTHDM(SM); };
691 obsThFactory["etaL2atQGTHDM"]= [](const StandardModel& SM) { return new etaL2atQGTHDM(SM); };
692 obsThFactory["lambda1atQGTHDM"]= [](const StandardModel& SM) { return new lambda1atQGTHDM(SM); };
693 obsThFactory["lambda2atQGTHDM"]= [](const StandardModel& SM) { return new lambda2atQGTHDM(SM); };
694 obsThFactory["lambda3atQGTHDM"]= [](const StandardModel& SM) { return new lambda3atQGTHDM(SM); };
695 obsThFactory["lambda4atQGTHDM"]= [](const StandardModel& SM) { return new lambda4atQGTHDM(SM); };
696 obsThFactory["Relambda5atQGTHDM"]= [](const StandardModel& SM) { return new Relambda5atQGTHDM(SM); };
697 obsThFactory["Relambda6atQGTHDM"]= [](const StandardModel& SM) { return new Relambda6atQGTHDM(SM); };
698 obsThFactory["Relambda7atQGTHDM"]= [](const StandardModel& SM) { return new Relambda7atQGTHDM(SM); };
699
700 obsThFactory["unitarity1_GTHDM"] = [](const StandardModel& SM) { return new unitarity1_GTHDM(SM); };
701 obsThFactory["unitarity2_GTHDM"] = [](const StandardModel& SM) { return new unitarity2_GTHDM(SM); };
702 obsThFactory["unitarity3_GTHDM"] = [](const StandardModel& SM) { return new unitarity3_GTHDM(SM); };
703 obsThFactory["unitarity4_GTHDM"] = [](const StandardModel& SM) { return new unitarity4_GTHDM(SM); };
704 obsThFactory["unitarity5_GTHDM"] = [](const StandardModel& SM) { return new unitarity5_GTHDM(SM); };
705 obsThFactory["unitarity6_GTHDM"] = [](const StandardModel& SM) { return new unitarity6_GTHDM(SM); };
706 obsThFactory["unitarity7_GTHDM"] = [](const StandardModel& SM) { return new unitarity7_GTHDM(SM); };
707 obsThFactory["unitarity8_GTHDM"] = [](const StandardModel& SM) { return new unitarity8_GTHDM(SM); };
708 obsThFactory["unitarity9_GTHDM"] = [](const StandardModel& SM) { return new unitarity9_GTHDM(SM); };
709 obsThFactory["unitarity10_GTHDM"] = [](const StandardModel& SM) { return new unitarity10_GTHDM(SM); };
710 obsThFactory["unitarity11_GTHDM"] = [](const StandardModel& SM) { return new unitarity11_GTHDM(SM); };
711 obsThFactory["unitarity12_GTHDM"] = [](const StandardModel& SM) { return new unitarity12_GTHDM(SM); };
712
713 obsThFactory["unitarity00eveP_Z2"] = [](const StandardModel& SM) { return new unitarity00eveP_Z2(SM); };
714 obsThFactory["unitarity00eveM_Z2"] = [](const StandardModel& SM) { return new unitarity00eveM_Z2(SM); };
715 obsThFactory["unitarity00oddP_Z2"] = [](const StandardModel& SM) { return new unitarity00oddP_Z2(SM); };
716 obsThFactory["unitarity00oddM_Z2"] = [](const StandardModel& SM) { return new unitarity00oddM_Z2(SM); };
717 obsThFactory["unitarity01eveP_Z2"] = [](const StandardModel& SM) { return new unitarity01eveP_Z2(SM); };
718 obsThFactory["unitarity01eveM_Z2"] = [](const StandardModel& SM) { return new unitarity01eveM_Z2(SM); };
719 obsThFactory["unitarity01oddP_Z2"] = [](const StandardModel& SM) { return new unitarity01oddP_Z2(SM); };
720 obsThFactory["unitarity01oddM_Z2"] = [](const StandardModel& SM) { return new unitarity01oddM_Z2(SM); };
721 obsThFactory["unitarity10odd_Z2"] = [](const StandardModel& SM) { return new unitarity10odd_Z2(SM); };
722 obsThFactory["unitarity11eveP_Z2"] = [](const StandardModel& SM) { return new unitarity11eveP_Z2(SM); };
723 obsThFactory["unitarity11eveM_Z2"] = [](const StandardModel& SM) { return new unitarity11eveM_Z2(SM); };
724 obsThFactory["unitarity11odd_Z2"] = [](const StandardModel& SM) { return new unitarity11odd_Z2(SM); };
725
726 obsThFactory["R1p00eveP_Z2"] = [](const StandardModel& SM) { return new R1p00eveP_Z2(SM); };
727 obsThFactory["R1p00eveM_Z2"] = [](const StandardModel& SM) { return new R1p00eveM_Z2(SM); };
728 obsThFactory["R1p00oddP_Z2"] = [](const StandardModel& SM) { return new R1p00oddP_Z2(SM); };
729 obsThFactory["R1p00oddM_Z2"] = [](const StandardModel& SM) { return new R1p00oddM_Z2(SM); };
730 obsThFactory["R1p01eveP_Z2"] = [](const StandardModel& SM) { return new R1p01eveP_Z2(SM); };
731 obsThFactory["R1p01eveM_Z2"] = [](const StandardModel& SM) { return new R1p01eveM_Z2(SM); };
732 obsThFactory["R1p01oddP_Z2"] = [](const StandardModel& SM) { return new R1p01oddP_Z2(SM); };
733 obsThFactory["R1p01oddM_Z2"] = [](const StandardModel& SM) { return new R1p01oddM_Z2(SM); };
734 obsThFactory["R1p10odd_Z2"] = [](const StandardModel& SM) { return new R1p10odd_Z2(SM); };
735 obsThFactory["R1p11eveP_Z2"] = [](const StandardModel& SM) { return new R1p11eveP_Z2(SM); };
736 obsThFactory["R1p11eveM_Z2"] = [](const StandardModel& SM) { return new R1p11eveM_Z2(SM); };
737 obsThFactory["R1p11odd_Z2"] = [](const StandardModel& SM) { return new R1p11odd_Z2(SM); };
738
739 obsThFactory["tanbetaZ2"] = [](const StandardModel& SM) { return new tanbetaZ2(SM); };
740
741 obsThFactory["perturbativity1_GTHDM"] = [](const StandardModel& SM) { return new perturbativity1_GTHDM(SM); };
742 obsThFactory["perturbativity2_GTHDM"] = [](const StandardModel& SM) { return new perturbativity2_GTHDM(SM); };
743
744 obsThFactory["bounded_from_below_GTHDM"] = [](const StandardModel& SM) { return new bounded_from_below_GTHDM(SM); };
745
746 obsThFactory["vacuum_stability_GTHDM"] = [](const StandardModel& SM) { return new vacuum_stability_GTHDM(SM); };
747
748 obsThFactory["EffectivePotMin1_GTHDM"] = [](const StandardModel& SM) { return new EffectivePotMin1_GTHDM(SM); };
749 obsThFactory["EffectivePotMin2_GTHDM"] = [](const StandardModel& SM) { return new EffectivePotMin2_GTHDM(SM); };
750
751 obsThFactory["DeltaS_GTHDM"] = [](const StandardModel& SM) { return new GTHDMDeltaS(SM); };
752 obsThFactory["DeltaT_GTHDM"] = [](const StandardModel& SM) { return new GTHDMDeltaT(SM); };
753 obsThFactory["DeltaU_GTHDM"] = [](const StandardModel& SM) { return new GTHDMDeltaU(SM); };
754
755 obsThFactory["Rb0_GTHDM"] = [](const StandardModel& SM) { return new Rb0GTHDM(SM); };
756
757 obsThFactory["GTHDMgminus2_mu"] = [](const StandardModel& SM) { return new GeneralTHDMgminus2_mu(SM); };
758
759 obsThFactory["GTHDM_mu_ggF_tth_htobb8"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htobb8(SM); };
760 obsThFactory["GTHDM_mu_ggF_tth_htoWW8"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htoWW8(SM); };
761 obsThFactory["GTHDM_mu_ggF_tth_htotautau8"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htotautau8(SM); };
762 obsThFactory["GTHDM_mu_ggF_tth_htoZZ8"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htoZZ8(SM); };
763 obsThFactory["GTHDM_mu_ggF_tth_htogaga8"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htogaga8(SM); };
764 obsThFactory["GTHDM_mu_ggF_tth_htobb13"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htobb13(SM); };
765 obsThFactory["GTHDM_mu_ggF_tth_htoWW13"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htoWW13(SM); };
766 obsThFactory["GTHDM_mu_ggF_tth_htotautau13"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htotautau13(SM); };
767 obsThFactory["GTHDM_mu_ggF_tth_htoZZ13"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htoZZ13(SM); };
768 obsThFactory["GTHDM_mu_ggF_tth_htogaga13"] = [](const StandardModel& SM) { return new GTHDM_ggF_tth_htogaga13(SM); };
769 obsThFactory["GTHDM_mu_VBF_Vh_htobb"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htobb(SM); };
770 obsThFactory["GTHDM_mu_VBF_Vh_htoWW"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htoWW(SM); };
771 obsThFactory["GTHDM_mu_VBF_Vh_htotautau"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htotautau(SM); };
772 obsThFactory["GTHDM_mu_VBF_Vh_htoZZ"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htoZZ(SM); };
773 obsThFactory["GTHDM_mu_VBF_Vh_htogaga"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htogaga(SM); };
774 obsThFactory["GTHDM_mu_VBF_Vh_htogg"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htogg(SM); };
775 obsThFactory["GTHDM_mu_VBF_Vh_htocc"] = [](const StandardModel& SM) { return new GTHDM_VBF_Vh_htocc(SM); };
776 obsThFactory["GTHDM_mu_ggF_htobb"] = [](const StandardModel& SM) { return new GTHDM_ggF_htobb(SM); };
777 obsThFactory["GTHDM_mu_ggF_htoWW"] = [](const StandardModel& SM) { return new GTHDM_ggF_htoWW(SM); };
778 obsThFactory["GTHDM_mu_ggF_htotautau"] = [](const StandardModel& SM) { return new GTHDM_ggF_htotautau(SM); };
779 obsThFactory["GTHDM_mu_ggF_htoZZ"] = [](const StandardModel& SM) { return new GTHDM_ggF_htoZZ(SM); };
780 obsThFactory["GTHDM_mu_ggF_htogaga"] = [](const StandardModel& SM) { return new GTHDM_ggF_htogaga(SM); };
781 obsThFactory["GTHDM_mu_tth_htobb"] = [](const StandardModel& SM) { return new GTHDM_tth_htobb(SM); };
782 obsThFactory["GTHDM_mu_tth_htoWW"] = [](const StandardModel& SM) { return new GTHDM_tth_htoWW(SM); };
783 obsThFactory["GTHDM_mu_tth_htotautau"] = [](const StandardModel& SM) { return new GTHDM_tth_htotautau(SM); };
784 obsThFactory["GTHDM_mu_tth_htoZZ"] = [](const StandardModel& SM) { return new GTHDM_tth_htoZZ(SM); };
785 obsThFactory["GTHDM_mu_tth_htogaga"] = [](const StandardModel& SM) { return new GTHDM_tth_htogaga(SM); };
786 obsThFactory["GTHDM_mu_htobb"] = [](const StandardModel& SM) { return new GTHDM_mu_htobb(SM); };
787 obsThFactory["GTHDM_mu_htoWW"] = [](const StandardModel& SM) { return new GTHDM_mu_htoWW(SM); };
788 obsThFactory["GTHDM_mu_htotautau"] = [](const StandardModel& SM) { return new GTHDM_mu_htotautau(SM); };
789 obsThFactory["GTHDM_mu_htoZga"] = [](const StandardModel& SM) { return new GTHDM_mu_htoZga(SM); };
790
791 obsThFactory["yu1r_GTHDM"] = [](const StandardModel& SM) { return new yu1r_GTHDM(SM); };
792 obsThFactory["yd1r_GTHDM"] = [](const StandardModel& SM) { return new yd1r_GTHDM(SM); };
793 obsThFactory["yl1r_GTHDM"] = [](const StandardModel& SM) { return new yl1r_GTHDM(SM); };
794
795 obsThFactory["yu2r_GTHDM"] = [](const StandardModel& SM) { return new yu2r_GTHDM(SM); };
796 obsThFactory["yd2r_GTHDM"] = [](const StandardModel& SM) { return new yd2r_GTHDM(SM); };
797 obsThFactory["yl2r_GTHDM"] = [](const StandardModel& SM) { return new yl2r_GTHDM(SM); };
798
799 obsThFactory["yu3r_GTHDM"] = [](const StandardModel& SM) { return new yu3r_GTHDM(SM); };
800 obsThFactory["yd3r_GTHDM"] = [](const StandardModel& SM) { return new yd3r_GTHDM(SM); };
801 obsThFactory["yl3r_GTHDM"] = [](const StandardModel& SM) { return new yl3r_GTHDM(SM); };
802
803 obsThFactory["suR_GTHDM"] = [](const StandardModel& SM) { return new suR_GTHDM(SM); };
804 obsThFactory["sdR_GTHDM"] = [](const StandardModel& SM) { return new sdR_GTHDM(SM); };
805 obsThFactory["slR_GTHDM"] = [](const StandardModel& SM) { return new slR_GTHDM(SM); };
806
807 obsThFactory["rh_gg_GTHDM"] = [](const StandardModel& SM) { return new rh_gg_GTHDM(SM); };
808 obsThFactory["rh_gaga_GTHDM"] = [](const StandardModel& SM) { return new rh_gaga_GTHDM(SM); };
809 obsThFactory["rh_Zga_GTHDM"] = [](const StandardModel& SM) { return new rh_Zga_GTHDM(SM); };
810
811 /* obsThFactory["Gamma_HH_THDM"] = boost::factory<Gamma_HH_THDM*>();
812 obsThFactory["rHH_gg_THDM"] = [](const StandardModel& SM) { return new rHH_gg_THDM(SM); };
813 obsThFactory["BR_HH_hh_THDM"] = [](const StandardModel& SM) { return new BR_HH_hh_THDM(SM); };
814 obsThFactory["BR_HH_AA_THDM"] = [](const StandardModel& SM) { return new BR_HH_AA_THDM(SM); };
815 obsThFactory["BR_HH_HpHm_THDM"] = [](const StandardModel& SM) { return new BR_HH_HpHm_THDM(SM); };
816 obsThFactory["BR_HH_AZ_THDM"] = [](const StandardModel& SM) { return new BR_HH_AZ_THDM(SM); };
817 obsThFactory["BR_HH_HpW_THDM"] = [](const StandardModel& SM) { return new BR_HH_HpW_THDM(SM); }; */
818 obsThFactory["Hobs_bb_phi2_bb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_bb_ATLAS13(SM); };
819 obsThFactory["Hobs_tt_phi2_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_tt_phi2_tt_ATLAS13(SM); };
820 obsThFactory["Hobs_bb_phi2_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_tt_ATLAS13(SM); };
821 obsThFactory["Hobs_bb_phi2_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_bb_CMS8(SM); };
822 obsThFactory["Hobs_gg_phi2_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_bb_CMS8(SM); };
823
824 obsThFactory["Hobs_tt_phi2_tt_CMS13"] = [](const StandardModel& SM) { return new Hobs_tt_phi2_tt_CMS13(SM); };
825 obsThFactory["Hobs_pp_phi2_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_bb_CMS13(SM); };
826 obsThFactory["Hobs_pp_phi2_bb_light_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_bb_light_CMS13(SM); };
827 obsThFactory["Hobs_bb_phi2_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_bb_CMS13(SM); };
828 obsThFactory["Hobs_gg_phi2_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_tautau_ATLAS8(SM); };
829 obsThFactory["Hobs_bb_phi2_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_tautau_ATLAS8(SM); };
830
831 obsThFactory["Hobs_gg_phi2_mumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_mumu_CMS8(SM); };
832 obsThFactory["Hobs_bb_phi2_mumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_mumu_CMS8(SM); };
833 obsThFactory["Hobs_gg_phi3_mumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_mumu_CMS8(SM); };
834 obsThFactory["Hobs_bb_phi3_mumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_mumu_CMS8(SM); };
835
836 obsThFactory["Hobs_gg_phi2_mumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_mumu_CMS13(SM); };
837 obsThFactory["Hobs_bb_phi2_mumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_mumu_CMS13(SM); };
838 obsThFactory["Hobs_gg_phi3_mumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_mumu_CMS13(SM); };
839 obsThFactory["Hobs_bb_phi3_mumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_mumu_CMS13(SM); };
840
841 obsThFactory["Hobs_gg_phi2_mumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_mumu_ATLAS13(SM); };
842 obsThFactory["Hobs_bb_phi2_mumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_mumu_ATLAS13(SM); };
843 obsThFactory["Hobs_gg_phi3_mumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_mumu_ATLAS13(SM); };
844 obsThFactory["Hobs_bb_phi3_mumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_mumu_ATLAS13(SM); };
845
846 obsThFactory["Hobs_gg_phi2_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_tautau_CMS8(SM); };
847 obsThFactory["Hobs_bb_phi2_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_tautau_CMS8(SM); };
848 obsThFactory["Hobs_gg_phi2_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_tautau_ATLAS13(SM); };
849 obsThFactory["Hobs_bb_phi2_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_tautau_ATLAS13(SM); };
850 obsThFactory["Hobs_gg_phi2_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_tautau_CMS13(SM); };
851 obsThFactory["Hobs_bb_phi2_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_tautau_CMS13(SM); };
852 obsThFactory["Hobs_gg_phi2_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_gaga_ATLAS8(SM); };
853 obsThFactory["Hobs_pp_phi2_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_gaga_ATLAS13(SM); };
854 obsThFactory["Hobs_gg_phi2_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_gaga_CMS13(SM); };
855 obsThFactory["Hobs_pp_phi2_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_Zga_llga_ATLAS8(SM); };
856 obsThFactory["Hobs_pp_phi2_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_Zga_llga_CMS8(SM); };
857 obsThFactory["Hobs_gg_phi2_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_Zga_llga_ATLAS13(SM); };
858 obsThFactory["Hobs_gg_phi2_Zga_qqga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_Zga_qqga_ATLAS13(SM); };
859 obsThFactory["Hobs_gg_phi2_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_Zga_CMS13(SM); };
860 obsThFactory["Hobs_gg_phi2_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_ZZ_ATLAS8(SM); };
861 obsThFactory["Hobs_VV_phi2_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_ZZ_ATLAS8(SM); };
862 obsThFactory["Hobs_gg_phi2_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_ZZ_llllnunu_ATLAS13(SM); };
863 obsThFactory["Hobs_VV_phi2_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_ZZ_llllnunu_ATLAS13(SM); };
864 obsThFactory["Hobs_gg_phi2_ZZ_llnunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_ZZ_llnunuqq_ATLAS13(SM); };
865 obsThFactory["Hobs_VV_phi2_ZZ_llnunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_ZZ_llnunuqq_ATLAS13(SM); };
866 obsThFactory["Hobs_pp_phi2_ZZ_llqqnunull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_ZZ_llqqnunull_CMS13(SM); };
867 obsThFactory["Hobs_pp_phi2_ZZ_qqnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_ZZ_qqnunu_CMS13(SM); };
868 obsThFactory["Hobs_gg_phi2_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_WW_ATLAS8(SM); };
869 obsThFactory["Hobs_VV_phi2_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_WW_ATLAS8(SM); };
870
871 obsThFactory["Hobs_gg_phi2_WW_heavy_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_WW_heavy_CMS13(SM); };
872 obsThFactory["Hobs_gg_phi3_WW_heavy_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_WW_heavy_CMS13(SM); };
873 obsThFactory["Hobs_VV_phi2_WW_heavy_CMS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_WW_heavy_CMS13(SM); };
874 obsThFactory["Hobs_VV_phi3_WW_heavy_CMS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_WW_heavy_CMS13(SM); };
875
876 obsThFactory["Hobs_gg_phi2_WW_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_WW_CMS13(SM); };
877 obsThFactory["Hobs_gg_phi3_WW_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_WW_CMS13(SM); };
878 obsThFactory["Hobs_VV_phi2_WW_CMS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_WW_CMS13(SM); };
879 obsThFactory["Hobs_VV_phi3_WW_CMS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_WW_CMS13(SM); };
880
881 obsThFactory["Hobs_gg_phi2_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_WW_enumunu_ATLAS13(SM); };
882 obsThFactory["Hobs_VV_phi2_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_WW_enumunu_ATLAS13(SM); };
883 obsThFactory["Hobs_ggVV_phi2_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggVV_phi2_WW_lnulnu_CMS13(SM); };
884 obsThFactory["Hobs_gg_phi2_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_WW_lnuqq_ATLAS13(SM); };
885 obsThFactory["Hobs_VV_phi2_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_WW_lnuqq_ATLAS13(SM); };
886 obsThFactory["Hobs_pp_phi2_WW_lnuqq_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_WW_lnuqq_CMS13(SM); };
887 obsThFactory["Hobs_pp_phi2_VV_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_VV_CMS8(SM); };
888 obsThFactory["Hobs_pp_phi2_VV_qqqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_VV_qqqq_ATLAS13(SM); };
889
890 obsThFactory["Hobs_gg_phi2_VV_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_VV_llqq_ATLAS13(SM); };
891 obsThFactory["Hobs_gg_phi3_VV_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_VV_llqq_ATLAS13(SM); };
892 obsThFactory["Hobs_VV_phi2_VV_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi2_VV_llqq_ATLAS13(SM); };
893 obsThFactory["Hobs_VV_phi3_VV_llqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_VV_llqq_ATLAS13(SM); };
894
895 obsThFactory["Hobs_gg_phi2_phi1phi1_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1phi1_ATLAS8(SM); };
896 obsThFactory["Hobs_pp_phi2_phi1phi1_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbbb_CMS8(SM); };
897 obsThFactory["Hobs_pp_phi2_phi1phi1_bbgaga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbgaga_CMS8(SM); };
898 obsThFactory["Hobs_gg_phi2_phi1phi1_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1phi1_bbtautau_CMS8(SM); };
899 obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbtautau_CMS8(SM); };
900 obsThFactory["Hobs_pp_phi2_phi1phi1_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbbb_ATLAS13(SM); };
901 obsThFactory["Hobs_pp_phi2_phi1phi1_bbbb_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbbb_1_CMS13(SM); };
902 obsThFactory["Hobs_pp_phi2_phi1phi1_bbbb_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbbb_2_CMS13(SM); };
903 obsThFactory["Hobs_pp_phi2_phi1phi1_bbgaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbgaga_ATLAS13(SM); };
904 obsThFactory["Hobs_pp_phi2_phi1phi1_bbgaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbgaga_CMS13(SM); };
905 //obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_ATLAS13"] = boost::factory<Hobs_pp_phi2_phi1phi1_bbtautau_ATLAS13*>();
906 obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_1_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbtautau_1_ATLAS13(SM); };
907 obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_2_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbtautau_2_ATLAS13(SM); };
908 obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbtautau_1_CMS13(SM); };
909 obsThFactory["Hobs_pp_phi2_phi1phi1_bbtautau_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbtautau_2_CMS13(SM); };
910 obsThFactory["Hobs_pp_phi2_phi1phi1_bbVV_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbVV_CMS13(SM); };
911
912 obsThFactory["Hobs_pp_phi2_phi1phi1_4WOr2W2tauOr4tau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_4WOr2W2tauOr4tau_CMS13(SM); };
913 obsThFactory["Hobs_pp_phi2_phi1phi1_bbWW_qqlnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbWW_qqlnu_CMS13(SM); };
914
915 obsThFactory["Hobs_pp_phi2_phi1phi1_bbZZ_lljj_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbZZ_lljj_CMS13(SM); };
916 obsThFactory["Hobs_pp_phi2_phi1phi1_bbZZ_llnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbZZ_llnunu_CMS13(SM); };
917
918 obsThFactory["Hobs_pp_phi2_phi1phi1_bbWWorbbtautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbWWorbbtautau_CMS13(SM); };
919
920 obsThFactory["Hobs_pp_phi2_phi1phi1_bbWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi1phi1_bbWW_ATLAS13(SM); };
921 obsThFactory["Hobs_gg_phi2_phi1phi1_gagaWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1phi1_gagaWW_ATLAS13(SM); };
922 obsThFactory["Hobs_gg_phi2_phi1Z_bbZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_bbZ_ATLAS8(SM); };
923 obsThFactory["Hobs_gg_phi2_phi1Z_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_bbll_CMS8(SM); };
924 obsThFactory["Hobs_gg_phi2_phi1Z_tautauZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_tautauZ_ATLAS8(SM); };
925 obsThFactory["Hobs_gg_phi2_phi1Z_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_tautaull_CMS8(SM); };
926 obsThFactory["Hobs_gg_phi2_phi1Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_bbZ_ATLAS13(SM); };
927
928 obsThFactory["Hobs_gg_phi2_phi1Z_tautaull_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_tautaull_CMS13(SM); };
929
930 obsThFactory["Hobs_gg_phi2_phi1Z_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_bbZ_1_CMS13(SM); };
931 obsThFactory["Hobs_gg_phi2_phi1Z_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi1Z_bbZ_2_CMS13(SM); };
932 obsThFactory["Hobs_bb_phi2_phi1Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_phi1Z_bbZ_ATLAS13(SM); };
933 obsThFactory["Hobs_bb_phi2_phi1Z_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_phi1Z_bbZ_1_CMS13(SM); };
934 obsThFactory["Hobs_bb_phi2_phi1Z_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_phi1Z_bbZ_2_CMS13(SM); };
935
936 obsThFactory["Hobs_bb_phi3_bb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_bb_ATLAS13(SM); };
937 obsThFactory["Hobs_tt_phi3_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_tt_phi3_tt_ATLAS13(SM); };
938 obsThFactory["Hobs_bb_phi3_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_tt_ATLAS13(SM); };
939 obsThFactory["Hobs_bb_phi3_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_bb_CMS8(SM); };
940 obsThFactory["Hobs_gg_phi3_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_bb_CMS8(SM); };
941 obsThFactory["Hobs_tt_phi3_tt_CMS13"] = [](const StandardModel& SM) { return new Hobs_tt_phi3_tt_CMS13(SM); };
942 obsThFactory["Hobs_pp_phi3_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_bb_CMS13(SM); };
943 obsThFactory["Hobs_pp_phi3_bb_light_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_bb_light_CMS13(SM); };
944 obsThFactory["Hobs_bb_phi3_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_bb_CMS13(SM); };
945 obsThFactory["Hobs_gg_phi3_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_tautau_ATLAS8(SM); };
946 obsThFactory["Hobs_bb_phi3_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_tautau_ATLAS8(SM); };
947 obsThFactory["Hobs_gg_phi3_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_tautau_CMS8(SM); };
948 obsThFactory["Hobs_bb_phi3_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_tautau_CMS8(SM); };
949 obsThFactory["Hobs_gg_phi3_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_tautau_ATLAS13(SM); };
950 obsThFactory["Hobs_bb_phi3_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_tautau_ATLAS13(SM); };
951 obsThFactory["Hobs_gg_phi3_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_tautau_CMS13(SM); };
952 obsThFactory["Hobs_bb_phi3_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_tautau_CMS13(SM); };
953 obsThFactory["Hobs_gg_phi3_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_gaga_ATLAS8(SM); };
954 obsThFactory["Hobs_pp_phi3_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_gaga_ATLAS13(SM); };
955 obsThFactory["Hobs_gg_phi3_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_gaga_CMS13(SM); };
956 obsThFactory["Hobs_pp_phi3_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_Zga_llga_ATLAS8(SM); };
957 obsThFactory["Hobs_pp_phi3_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_Zga_llga_CMS8(SM); };
958 obsThFactory["Hobs_gg_phi3_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_Zga_llga_ATLAS13(SM); };
959 obsThFactory["Hobs_gg_phi3_Zga_qqga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_Zga_qqga_ATLAS13(SM); };
960 obsThFactory["Hobs_gg_phi3_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_Zga_CMS13(SM); };
961 obsThFactory["Hobs_gg_phi3_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_ZZ_ATLAS8(SM); };
962 obsThFactory["Hobs_VV_phi3_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_ZZ_ATLAS8(SM); };
963 obsThFactory["Hobs_gg_phi3_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_ZZ_llllnunu_ATLAS13(SM); };
964 obsThFactory["Hobs_VV_phi3_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_ZZ_llllnunu_ATLAS13(SM); };
965 obsThFactory["Hobs_gg_phi3_ZZ_llnunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_ZZ_llnunuqq_ATLAS13(SM); };
966 obsThFactory["Hobs_VV_phi3_ZZ_llnunuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_ZZ_llnunuqq_ATLAS13(SM); };
967 obsThFactory["Hobs_pp_phi3_ZZ_llqqnunull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_ZZ_llqqnunull_CMS13(SM); };
968 obsThFactory["Hobs_pp_phi3_ZZ_qqnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_ZZ_qqnunu_CMS13(SM); };
969 obsThFactory["Hobs_gg_phi3_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_WW_ATLAS8(SM); };
970 obsThFactory["Hobs_VV_phi3_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_WW_ATLAS8(SM); };
971 obsThFactory["Hobs_gg_phi3_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_WW_enumunu_ATLAS13(SM); };
972 obsThFactory["Hobs_VV_phi3_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_WW_enumunu_ATLAS13(SM); };
973 obsThFactory["Hobs_ggVV_phi3_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggVV_phi3_WW_lnulnu_CMS13(SM); };
974 obsThFactory["Hobs_gg_phi3_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_WW_lnuqq_ATLAS13(SM); };
975 obsThFactory["Hobs_VV_phi3_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_phi3_WW_lnuqq_ATLAS13(SM); };
976 obsThFactory["Hobs_pp_phi3_WW_lnuqq_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_WW_lnuqq_CMS13(SM); };
977 obsThFactory["Hobs_pp_phi3_VV_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_VV_CMS8(SM); };
978 obsThFactory["Hobs_pp_phi3_VV_qqqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_VV_qqqq_ATLAS13(SM); };
979 obsThFactory["Hobs_gg_phi3_phi1phi1_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1phi1_ATLAS8(SM); };
980 obsThFactory["Hobs_pp_phi3_phi1phi1_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbbb_CMS8(SM); };
981 obsThFactory["Hobs_pp_phi3_phi1phi1_bbgaga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbgaga_CMS8(SM); };
982 obsThFactory["Hobs_gg_phi3_phi1phi1_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1phi1_bbtautau_CMS8(SM); };
983 obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbtautau_CMS8(SM); };
984 obsThFactory["Hobs_pp_phi3_phi1phi1_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbbb_ATLAS13(SM); };
985 obsThFactory["Hobs_pp_phi3_phi1phi1_bbbb_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbbb_1_CMS13(SM); };
986 obsThFactory["Hobs_pp_phi3_phi1phi1_bbbb_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbbb_2_CMS13(SM); };
987 obsThFactory["Hobs_pp_phi3_phi1phi1_bbgaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbgaga_ATLAS13(SM); };
988 obsThFactory["Hobs_pp_phi3_phi1phi1_bbgaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbgaga_CMS13(SM); };
989 //obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_ATLAS13"] = boost::factory<Hobs_pp_phi3_phi1phi1_bbtautau_ATLAS13*>(); //OLD this has been splitted in two
990 obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_1_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbtautau_1_ATLAS13(SM); };
991 obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_2_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbtautau_2_ATLAS13(SM); };
992
993 obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbtautau_1_CMS13(SM); };
994 obsThFactory["Hobs_pp_phi3_phi1phi1_bbtautau_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbtautau_2_CMS13(SM); };
995 obsThFactory["Hobs_pp_phi3_phi1phi1_bbVV_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbVV_CMS13(SM); };
996
997 obsThFactory["Hobs_pp_phi3_phi1phi1_4WOr2W2tauOr4tau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_4WOr2W2tauOr4tau_CMS13(SM); };
998 obsThFactory["Hobs_pp_phi3_phi1phi1_bbWW_qqlnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbWW_qqlnu_CMS13(SM); };
999
1000 obsThFactory["Hobs_pp_phi3_phi1phi1_bbZZ_lljj_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbZZ_lljj_CMS13(SM); };
1001 obsThFactory["Hobs_pp_phi3_phi1phi1_bbZZ_llnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbZZ_llnunu_CMS13(SM); };
1002
1003 obsThFactory["Hobs_pp_phi3_phi1phi1_bbWWorbbtautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbWWorbbtautau_CMS13(SM); };
1004
1005 obsThFactory["Hobs_pp_phi3_phi1phi1_bbWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi1phi1_bbWW_ATLAS13(SM); };
1006 obsThFactory["Hobs_gg_phi3_phi1phi1_gagaWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1phi1_gagaWW_ATLAS13(SM); };
1007
1008 obsThFactory["Hobs_gg_phi3_phi1Z_bbZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_bbZ_ATLAS8(SM); };
1009 obsThFactory["Hobs_gg_phi3_phi1Z_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_bbll_CMS8(SM); };
1010 obsThFactory["Hobs_gg_phi3_phi1Z_tautauZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_tautauZ_ATLAS8(SM); };
1011 obsThFactory["Hobs_gg_phi3_phi1Z_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_tautaull_CMS8(SM); };
1012 obsThFactory["Hobs_gg_phi3_phi1Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_bbZ_ATLAS13(SM); };
1013
1014 obsThFactory["Hobs_gg_phi3_phi1Z_tautaull_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_tautaull_CMS13(SM); };
1015
1016 obsThFactory["Hobs_gg_phi3_phi1Z_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_bbZ_1_CMS13(SM); };
1017 obsThFactory["Hobs_gg_phi3_phi1Z_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi1Z_bbZ_2_CMS13(SM); };
1018 obsThFactory["Hobs_bb_phi3_phi1Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_phi1Z_bbZ_ATLAS13(SM); };
1019 obsThFactory["Hobs_bb_phi3_phi1Z_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_phi1Z_bbZ_1_CMS13(SM); };
1020 obsThFactory["Hobs_bb_phi3_phi1Z_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_phi1Z_bbZ_2_CMS13(SM); };
1021
1022 obsThFactory["Hobs_pp_phi3_phi2Z_bbll_1_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi2Z_bbll_1_CMS8(SM); };
1023 obsThFactory["Hobs_pp_phi2_phi3Z_bbll_1_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi3Z_bbll_1_CMS8(SM); };
1024 obsThFactory["Hobs_pp_phi3_phi2Z_bbll_2_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi2Z_bbll_2_CMS8(SM); };
1025 obsThFactory["Hobs_pp_phi2_phi3Z_bbll_2_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi3Z_bbll_2_CMS8(SM); };
1026 obsThFactory["Hobs_pp_phi3_phi2Z_tautaull_1_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi2Z_tautaull_1_CMS8(SM); };
1027 obsThFactory["Hobs_pp_phi2_phi3Z_tautaull_1_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi3Z_tautaull_1_CMS8(SM); };
1028 obsThFactory["Hobs_pp_phi3_phi2Z_tautaull_2_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi3_phi2Z_tautaull_2_CMS8(SM); };
1029 obsThFactory["Hobs_pp_phi2_phi3Z_tautaull_2_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_phi3Z_tautaull_2_CMS8(SM); };
1030 obsThFactory["Hobs_gg_phi3_phi2Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi2Z_bbZ_ATLAS13(SM); };
1031 obsThFactory["Hobs_gg_phi2_phi3Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi3Z_bbZ_ATLAS13(SM); };
1032 obsThFactory["Hobs_bb_phi3_phi2Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi3_phi2Z_bbZ_ATLAS13(SM); };
1033 obsThFactory["Hobs_bb_phi2_phi3Z_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_phi2_phi3Z_bbZ_ATLAS13(SM); };
1034 obsThFactory["Hobs_gg_phi3_phi2Z_WWZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_phi2Z_WWZ_ATLAS13(SM); };
1035 obsThFactory["Hobs_gg_phi2_phi3Z_WWZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_phi2_phi3Z_WWZ_ATLAS13(SM); };
1036
1037 obsThFactory["Hobs_pp_Hpm_taunu_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_ATLAS8_GTHDM(SM); };
1038 obsThFactory["Hobs_pp_Hp_taunu_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_taunu_CMS8_GTHDM(SM); };
1039 obsThFactory["Hobs_pp_Hpm_taunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_ATLAS13_GTHDM(SM); };
1040 obsThFactory["Hobs_pp_Hpm_taunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_taunu_CMS13_GTHDM(SM); };
1041 obsThFactory["Hobs_pp_Hpm_tb_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_tb_ATLAS8_GTHDM(SM); };
1042 obsThFactory["Hobs_pp_Hp_tb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Hp_tb_CMS8_GTHDM(SM); };
1043 obsThFactory["Hobs_pp_Hpm_tb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_tb_ATLAS13(SM); };
1044 obsThFactory["Hobs_pp_Hpm_tb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Hpm_tb_CMS13(SM); };
1045
1046 obsThFactory["Hobs_pp_h_phi3phi3_mumutautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_mumutautau_CMS13(SM); };
1047 obsThFactory["Hobs_pp_h_phi3phi3_bbtautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbtautau_CMS13(SM); };
1048 obsThFactory["Hobs_pp_h_phi3phi3_bbmumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbmumu_CMS13(SM); };
1049 obsThFactory["Hobs_pp_h_phi3Z_mumull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3Z_mumull_CMS13(SM); };
1050 obsThFactory["Hobs_pp_h_phi3phi3_mumumumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_mumumumu_CMS13(SM); };
1051 obsThFactory["Hobs_pp_h_phi3phi3_gagagaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_gagagaga_CMS13(SM); };
1052 obsThFactory["Hobs_pp_h_phi3phi3_tautautautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_tautautautau_CMS13(SM); };
1053 obsThFactory["Hobs_pp_bbphi3_bbtautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_bbphi3_bbtautau_CMS13(SM); };
1054 obsThFactory["Hobs_pp_ttphi3_ttmumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_bbphi3_bbtautau_CMS13(SM); };
1055 obsThFactory["Hobs_pp_ttphi3_tttautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_bbphi3_bbtautau_CMS13(SM); };
1056 obsThFactory["Hobs_Vh_h_phi3phi3_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_Vh_h_phi3phi3_bbbb_CMS13(SM); };
1057
1058 obsThFactory["Hobs_pp_h_phi3phi3_bbmumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbmumu_ATLAS13(SM); };
1059 obsThFactory["Hobs_gg_h_phi3phi3_mumumumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_h_phi3phi3_mumumumu_ATLAS13(SM); };
1060 obsThFactory["Hobs_gg_h_phi3Z_mumull_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_h_phi3Z_mumull_ATLAS13(SM); };
1061 obsThFactory["Hobs_Vh_h_phi3phi3_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_Vh_h_phi3phi3_bbbb_ATLAS13(SM); };
1062 obsThFactory["Hobs_Zh_h_phi3phi3_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_Zh_h_phi3phi3_bbbb_ATLAS13(SM); };
1063 obsThFactory["Hobs_pp_h_phi3phi3_bbmumu_ATLAS13_old"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbmumu_ATLAS13_old(SM); };
1064 obsThFactory["Hobs_pp_h_phi3phi3_gagagg_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_gagagg_ATLAS13(SM); };
1065 obsThFactory["Hobs_pp_ttphi3_ttmumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_ttphi3_ttmumu_ATLAS13(SM); };
1066 obsThFactory["Hobs_gg_phi3_tautau_ATLAS13_low"] = [](const StandardModel& SM) { return new Hobs_gg_phi3_tautau_ATLAS13_low(SM); };
1067 obsThFactory["Hobs_pp_h_phi3phi3_gagagaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_gagagaga_ATLAS13(SM); };
1068 obsThFactory["Hobs_pp_h_phi3phi3_bbtautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbtautau_ATLAS13(SM); };
1069
1070 obsThFactory["Hobs_pp_h_phi2Z_mumull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi2Z_mumull_CMS13(SM); };
1071 obsThFactory["Hobs_pp_h_phi2phi2_mumumumu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi2phi2_mumumumu_CMS13(SM); };
1072
1073 obsThFactory["Hobs_gg_h_phi2phi2_mumumumu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_h_phi2phi2_mumumumu_ATLAS13(SM); };
1074 obsThFactory["Hobs_gg_h_phi2Z_mumull_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_h_phi2Z_mumull_ATLAS13(SM); };
1075 obsThFactory["Hobs_Vh_h_phi2phi2_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_Vh_h_phi2phi2_bbbb_ATLAS13(SM); };
1076 obsThFactory["Hobs_Zh_h_phi2phi2_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_Zh_h_phi2phi2_bbbb_ATLAS13(SM); };
1077 obsThFactory["Hobs_pp_h_phi2phi2_bbmumu_ATLAS13_old"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi2phi2_bbmumu_ATLAS13_old(SM); };
1078 obsThFactory["Hobs_pp_h_phi2phi2_gagagg_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi2phi2_gagagg_ATLAS13(SM); };
1079
1080 obsThFactory["Hobs_pp_h_phi3phi3_gagagaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_gagagaga_ATLAS8(SM); };
1081 obsThFactory["Hobs_gg_h_phi3phi3_tautautautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_h_phi3phi3_tautautautau_ATLAS8(SM); };
1082 obsThFactory["Hobs_pp_h_phi3phi3_tautautautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_tautautautau_CMS8(SM); };
1083 obsThFactory["Hobs_pp_h_phi3phi3_bbmumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_bbmumu_CMS8(SM); };
1084 obsThFactory["Hobs_pp_h_phi3phi3_mumutautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_h_phi3phi3_mumutautau_CMS8(SM); };
1085 obsThFactory["Hobs_pp_phi2_gaga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_gaga_CMS8(SM); };
1086 obsThFactory["Hobs_pp_phi2_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_gaga_CMS13(SM); };
1087 obsThFactory["Hobs_pp_phi2_gaga_ATLAS13_low"] = [](const StandardModel& SM) { return new Hobs_pp_phi2_gaga_ATLAS13_low(SM); };
1088 obsThFactory["Hobs_pp_bbphi3_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_bbphi3_bbtautau_CMS8(SM); };
1089 obsThFactory["Hobs_pp_bbphi3_bbmumu_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_bbphi3_bbmumu_CMS8(SM); };
1090
1091 obsThFactory["Hobs_phi2Z_gagaZ_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi2Z_gagaZ_LEP209(SM); };
1092 obsThFactory["Hobs_phi2Z_bbZ_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi2Z_bbZ_LEP209(SM); };
1093 obsThFactory["Hobs_phi2Z_tautauZ_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi2Z_tautauZ_LEP209(SM); };
1094 obsThFactory["Hobs_phi2phi3_bbbb_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi2phi3_bbbb_LEP209(SM); };
1095 obsThFactory["Hobs_phi2phi3_tautautautau_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi2phi3_tautautautau_LEP209(SM); };
1096 obsThFactory["Hobs_phi1phi3_bbbb_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi1phi3_bbbb_LEP209(SM); };
1097 obsThFactory["Hobs_phi1phi3_tautautautau_LEP209"] = [](const StandardModel& SM) { return new Hobs_phi1phi3_tautautautau_LEP209(SM); };
1098
1099 obsThFactory["Hobs_t_Hpb_csb_CMS8"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_csb_CMS8(SM); };
1100 obsThFactory["Hobs_t_Hpb_taunub_CMS8"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_taunub_CMS8(SM); };
1101 obsThFactory["Hobs_t_Hpb_cbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_cbb_CMS8(SM); };
1102 obsThFactory["Hobs_t_Hpb_WAb_Wmumub_CMS13"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_WAb_Wmumub_CMS13(SM); };
1103 obsThFactory["Hobs_t_Hpb_csb_CMS13"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_csb_CMS13(SM); };
1104 obsThFactory["Hobs_t_Hpb_taunub_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_taunub_ATLAS8(SM); };
1105 obsThFactory["Hobs_t_Hpb_cbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_cbb_ATLAS13(SM); };
1106 obsThFactory["Hobs_t_Hpb_WAb_Wmumub_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_WAb_Wmumub_ATLAS13(SM); };
1107 obsThFactory["Hobs_t_Hpb_csb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_t_Hpb_csb_ATLAS13(SM); };
1108
1109 obsThFactory["Hobs_HpHm_taunutaunu_LEP209"] = [](const StandardModel& SM) { return new Hobs_HpHm_taunutaunu_LEP209(SM); };
1110 obsThFactory["Hobs_HpHm_qqqq_LEP209"] = [](const StandardModel& SM) { return new Hobs_HpHm_qqqq_LEP209(SM); };
1111 obsThFactory["Hobs_HpHm_qqtaunu_OPAL209"] = [](const StandardModel& SM) { return new Hobs_HpHm_qqtaunu_OPAL209(SM); };
1112 obsThFactory["Hobs_HpHm_qqtaunu_OPAL172"] = [](const StandardModel& SM) { return new Hobs_HpHm_qqtaunu_OPAL172(SM); };
1113 obsThFactory["Hobs_HpHm_AWstAWst_bbbb_OPAL209"] = [](const StandardModel& SM) { return new Hobs_HpHm_AWstAWst_bbbb_OPAL209(SM); };
1114 obsThFactory["Hobs_HpHm_taunuAWst_taunubb_OPAL209"] = [](const StandardModel& SM) { return new Hobs_HpHm_taunuAWst_taunubb_OPAL209(SM); };
1115
1116 obsThFactory["Hobs_pp_HpHm_taunutaunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_HpHm_taunutaunu_ATLAS13(SM); };
1117 obsThFactory["Hobs_pp_HpHm_taunutaunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_HpHm_taunutaunu_CMS13(SM); };
1118 obsThFactory["Hobs_pp_HpHm_munumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_HpHm_munumunu_ATLAS13(SM); };
1119 obsThFactory["Hobs_pp_HpHm_munumunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_HpHm_munumunu_CMS13(SM); };
1120 obsThFactory["Hobs_HpHm_munumunu_LEP208"] = [](const StandardModel& SM) { return new Hobs_HpHm_munumunu_LEP208(SM); };
1121
1122 obsThFactory["log10_tt_phi2_tt_TH13"] = [](const StandardModel& SM) { return new log10_tt_phi2_tt_TH13(SM); };
1123 obsThFactory["log10_tt_phi3_tt_TH13"] = [](const StandardModel& SM) { return new log10_tt_phi3_tt_TH13(SM); };
1124 obsThFactory["log10_bb_phi2_tt_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi2_tt_TH13(SM); };
1125 obsThFactory["log10_bb_phi3_tt_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi3_tt_TH13(SM); };
1126
1127 obsThFactory["log10_bb_phi2_bb_TH8"] = [](const StandardModel& SM) { return new log10_bb_phi2_bb_TH8(SM); };
1128 obsThFactory["log10_bb_phi3_bb_TH8"] = [](const StandardModel& SM) { return new log10_bb_phi3_bb_TH8(SM); };
1129 obsThFactory["log10_gg_phi2_bb_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_bb_TH8(SM); };
1130 obsThFactory["log10_gg_phi3_bb_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_bb_TH8(SM); };
1131 obsThFactory["log10_pp_phi2_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_bb_TH13(SM); };
1132 obsThFactory["log10_pp_phi3_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_bb_TH13(SM); };
1133 obsThFactory["log10_bb_phi2_bb_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi2_bb_TH13(SM); };
1134 obsThFactory["log10_bb_phi3_bb_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi3_bb_TH13(SM); };
1135
1136 obsThFactory["log10_gg_phi2_tautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_tautau_TH8(SM); };
1137 obsThFactory["log10_gg_phi3_tautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_tautau_TH8(SM); };
1138 obsThFactory["log10_bb_phi2_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bb_phi2_tautau_TH8(SM); };
1139 obsThFactory["log10_bb_phi3_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bb_phi3_tautau_TH8(SM); };
1140 obsThFactory["log10_gg_phi2_tautau_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_tautau_TH13(SM); };
1141 obsThFactory["log10_gg_phi3_tautau_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_tautau_TH13(SM); };
1142 obsThFactory["log10_bb_phi2_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi2_tautau_TH13(SM); };
1143 obsThFactory["log10_bb_phi3_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi3_tautau_TH13(SM); };
1144
1145 obsThFactory["log10_gg_phi2_gaga_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_gaga_TH8(SM); };
1146 obsThFactory["log10_gg_phi3_gaga_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_gaga_TH8(SM); };
1147 obsThFactory["log10_pp_phi2_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_gaga_TH13(SM); };
1148 obsThFactory["log10_pp_phi3_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_gaga_TH13(SM); };
1149 obsThFactory["log10_gg_phi2_gaga_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_gaga_TH13(SM); };
1150 obsThFactory["log10_gg_phi3_gaga_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_gaga_TH13(SM); };
1151
1152 obsThFactory["log10_pp_phi2_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi2_Zga_llga_TH8(SM); };
1153 obsThFactory["log10_pp_phi3_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_Zga_llga_TH8(SM); };
1154 obsThFactory["log10_gg_phi2_Zga_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_Zga_TH13(SM); };
1155 obsThFactory["log10_gg_phi3_Zga_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_Zga_TH13(SM); };
1156
1157 obsThFactory["log10_gg_phi2_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_ZZ_TH8(SM); };
1158 obsThFactory["log10_gg_phi3_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_ZZ_TH8(SM); };
1159 obsThFactory["log10_VV_phi2_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_VV_phi2_ZZ_TH8(SM); };
1160 obsThFactory["log10_VV_phi3_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_VV_phi3_ZZ_TH8(SM); };
1161 obsThFactory["log10_gg_phi2_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_ZZ_TH13(SM); };
1162 obsThFactory["log10_gg_phi3_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_ZZ_TH13(SM); };
1163 obsThFactory["log10_VV_phi2_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_VV_phi2_ZZ_TH13(SM); };
1164 obsThFactory["log10_VV_phi3_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_VV_phi3_ZZ_TH13(SM); };
1165 obsThFactory["log10_pp_phi2_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_ZZ_TH13(SM); };
1166 obsThFactory["log10_pp_phi3_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_ZZ_TH13(SM); };
1167
1168 obsThFactory["log10_gg_phi2_WW_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_WW_TH8(SM); };
1169 obsThFactory["log10_gg_phi3_WW_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_WW_TH8(SM); };
1170 obsThFactory["log10_VV_phi2_WW_TH8"] = [](const StandardModel& SM) { return new log10_VV_phi2_WW_TH8(SM); };
1171 obsThFactory["log10_VV_phi3_WW_TH8"] = [](const StandardModel& SM) { return new log10_VV_phi3_WW_TH8(SM); };
1172 obsThFactory["log10_gg_phi2_WW_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_WW_TH13(SM); };
1173 obsThFactory["log10_gg_phi3_WW_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_WW_TH13(SM); };
1174 obsThFactory["log10_VV_phi2_WW_TH13"] = [](const StandardModel& SM) { return new log10_VV_phi2_WW_TH13(SM); };
1175 obsThFactory["log10_VV_phi3_WW_TH13"] = [](const StandardModel& SM) { return new log10_VV_phi3_WW_TH13(SM); };
1176 obsThFactory["log10_ggVV_phi2_WW_lnulnu_TH13"] = [](const StandardModel& SM) { return new log10_ggVV_phi2_WW_lnulnu_TH13(SM); };
1177 obsThFactory["log10_ggVV_phi3_WW_lnulnu_TH13"] = [](const StandardModel& SM) { return new log10_ggVV_phi3_WW_lnulnu_TH13(SM); };
1178 obsThFactory["log10_pp_phi2_WW_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_WW_TH13(SM); };
1179 obsThFactory["log10_pp_phi3_WW_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_WW_TH13(SM); };
1180
1181 obsThFactory["log10_pp_phi2_VV_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi2_VV_TH8(SM); };
1182 obsThFactory["log10_pp_phi3_VV_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_VV_TH8(SM); };
1183 obsThFactory["log10_pp_phi2_VV_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_VV_TH13(SM); };
1184 obsThFactory["log10_pp_phi3_VV_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_VV_TH13(SM); };
1185
1186 obsThFactory["log10_gg_phi2_phi1phi1_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1phi1_TH8(SM); };
1187 obsThFactory["log10_gg_phi3_phi1phi1_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1phi1_TH8(SM); };
1188 obsThFactory["log10_pp_phi2_phi1phi1_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_bbbb_TH8(SM); };
1189 obsThFactory["log10_pp_phi3_phi1phi1_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_bbbb_TH8(SM); };
1190 obsThFactory["log10_pp_phi2_phi1phi1_bbgaga_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_bbgaga_TH8(SM); };
1191 obsThFactory["log10_pp_phi3_phi1phi1_bbgaga_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_bbgaga_TH8(SM); };
1192 obsThFactory["log10_gg_phi2_phi1phi1_bbtautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1phi1_bbtautau_TH8(SM); };
1193 obsThFactory["log10_gg_phi3_phi1phi1_bbtautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1phi1_bbtautau_TH8(SM); };
1194 obsThFactory["log10_pp_phi2_phi1phi1_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_TH8(SM); };
1195 obsThFactory["log10_pp_phi3_phi1phi1_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_TH8(SM); };
1196 obsThFactory["log10_pp_phi2_phi1phi1_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_bbbb_TH13(SM); };
1197 obsThFactory["log10_pp_phi3_phi1phi1_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_bbbb_TH13(SM); };
1198 obsThFactory["log10_pp_phi2_phi1phi1_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_TH13(SM); };
1199 obsThFactory["log10_pp_phi3_phi1phi1_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_TH13(SM); };
1200 obsThFactory["log10_pp_phi2_phi1phi1_bbgaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_bbgaga_TH13(SM); };
1201 obsThFactory["log10_pp_phi3_phi1phi1_bbgaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_bbgaga_TH13(SM); };
1202 obsThFactory["log10_pp_phi2_phi1phi1_with_channel_bbtautau_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_with_channel_bbtautau_TH13(SM); };
1203 obsThFactory["log10_pp_phi3_phi1phi1_with_channel_bbtautau_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_with_channel_bbtautau_TH13(SM); };
1204 obsThFactory["log10_pp_phi2_phi1phi1_bbVV_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi2_phi1phi1_bbVV_TH13(SM); };
1205 obsThFactory["log10_pp_phi3_phi1phi1_bbVV_TH13"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi1phi1_bbVV_TH13(SM); };
1206 obsThFactory["log10_gg_phi2_phi1phi1_gagaWW_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1phi1_gagaWW_TH13(SM); };
1207 obsThFactory["log10_gg_phi3_phi1phi1_gagaWW_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1phi1_gagaWW_TH13(SM); };
1208
1209 obsThFactory["log10_gg_phi2_phi1Z_bbZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1Z_bbZ_TH8(SM); };
1210 obsThFactory["log10_gg_phi3_phi1Z_bbZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1Z_bbZ_TH8(SM); };
1211 obsThFactory["log10_gg_phi2_phi1Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1Z_bbll_TH8(SM); };
1212 obsThFactory["log10_gg_phi3_phi1Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1Z_bbll_TH8(SM); };
1213 obsThFactory["log10_gg_phi2_phi1Z_tautauZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1Z_tautauZ_TH8(SM); };
1214 obsThFactory["log10_gg_phi3_phi1Z_tautauZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1Z_tautauZ_TH8(SM); };
1215 obsThFactory["log10_gg_phi2_phi1Z_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1Z_tautaull_TH8(SM); };
1216 obsThFactory["log10_gg_phi3_phi1Z_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1Z_tautaull_TH8(SM); };
1217 obsThFactory["log10_gg_phi2_phi1Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi2_phi1Z_bbZ_TH13(SM); };
1218 obsThFactory["log10_gg_phi3_phi1Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi1Z_bbZ_TH13(SM); };
1219 obsThFactory["log10_bb_phi2_phi1Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi2_phi1Z_bbZ_TH13(SM); };
1220 obsThFactory["log10_bb_phi3_phi1Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi3_phi1Z_bbZ_TH13(SM); };
1221
1222 obsThFactory["log10_pp_phi3_phi2Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi2Z_bbll_TH8(SM); };
1223 obsThFactory["log10_pp_phi3_phi2Z_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_pp_phi3_phi2Z_tautaull_TH8(SM); };
1224 obsThFactory["log10_gg_phi3_phi2Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_phi3_phi2Z_bbZ_TH13(SM); };
1225 obsThFactory["log10_bb_phi3_phi2Z_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_bb_phi3_phi2Z_bbZ_TH13(SM); };
1226
1227 obsThFactory["log10_pp_Hpm_taunu_TH8_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hpm_taunu_TH8_GTHDM(SM); };
1228 obsThFactory["log10_pp_Hp_taunu_TH8_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hp_taunu_TH8_GTHDM(SM); };
1229 obsThFactory["log10_pp_Hpm_taunu_TH13_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hpm_taunu_TH13_GTHDM(SM); };
1230 obsThFactory["log10_pp_Hpm_tb_TH8_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hpm_tb_TH8_GTHDM(SM); };
1231 obsThFactory["log10_pp_Hp_tb_TH8_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hp_tb_TH8_GTHDM(SM); };
1232 obsThFactory["log10_pp_Hpm_tb_TH13_GTHDM"] = [](const StandardModel& SM) { return new log10_pp_Hpm_tb_TH13_GTHDM(SM); };
1233 /* END: REMOVE FROM THE PACKAGE */
1234
1235 //----- LeftRightSymmetric model observables -----
1236 obsThFactory["mu1_2_LRSM"] = [](const StandardModel& SM) { return new mu1_2_LRSM(SM); };
1237 obsThFactory["mu2_2_LRSM"] = [](const StandardModel& SM) { return new mu2_2_LRSM(SM); };
1238 obsThFactory["mu3_2_LRSM"] = [](const StandardModel& SM) { return new mu3_2_LRSM(SM); };
1239 obsThFactory["rho2_LRSM"] = [](const StandardModel& SM) { return new rho2_LRSM(SM); };
1240 obsThFactory["rho3_LRSM"] = [](const StandardModel& SM) { return new rho3_LRSM(SM); };
1241 obsThFactory["alpha3_LRSM"] = [](const StandardModel& SM) { return new alpha3_LRSM(SM); };
1242 obsThFactory["mH00_LRSM"] = [=](const StandardModel& SM) { return new MH0_LRSM(SM, 0); };
1243 obsThFactory["mH01_LRSM"] = [=](const StandardModel& SM) { return new MH0_LRSM(SM, 1); };
1244 obsThFactory["mH02_LRSM"] = [=](const StandardModel& SM) { return new MH0_LRSM(SM, 2); };
1245 obsThFactory["mH03_LRSM"] = [=](const StandardModel& SM) { return new MH0_LRSM(SM, 3); };
1246 obsThFactory["mH04_LRSM"] = [=](const StandardModel& SM) { return new MH0_LRSM(SM, 4); };
1247 obsThFactory["mH05_LRSM"] = [](const StandardModel& SM) { return new MH05_LRSM(SM); };
1248 obsThFactory["mH06_LRSM"] = [](const StandardModel& SM) { return new MH06_LRSM(SM); };
1249 obsThFactory["MH01_app1"] = [](const StandardModel& SM) { return new MH01_app1(SM); };
1250 obsThFactory["MH01_app"] = [=](const StandardModel& SM) { return new MH0_app(SM, 0); };
1251 obsThFactory["MH02_app"] = [=](const StandardModel& SM) { return new MH0_app(SM, 1); };
1252 obsThFactory["MH03_app"] = [=](const StandardModel& SM) { return new MH0_app(SM, 2); };
1253 obsThFactory["MH04_app"] = [=](const StandardModel& SM) { return new MH0_app(SM, 3); };
1254
1255 /* BEGIN: REMOVE FROM THE PACKAGE */
1256 //----- THDMW model observables -----
1257 obsThFactory["Q_stTHDMW"] = [](const StandardModel& SM) { return new Q_stTHDMW(SM); };
1258 obsThFactory["DeltaQ_THDMW"] = [](const StandardModel& SM) { return new DeltaQ_THDMW(SM); };
1259 obsThFactory["lambda1atQTHDMW"] = [](const StandardModel& SM) { return new lambda1atQTHDMW(SM); };
1260 obsThFactory["lambda2atQTHDMW"] = [](const StandardModel& SM) { return new lambda2atQTHDMW(SM); };
1261 obsThFactory["lambda3atQTHDMW"] = [](const StandardModel& SM) { return new lambda3atQTHDMW(SM); };
1262 obsThFactory["lambda4atQTHDMW"] = [](const StandardModel& SM) { return new lambda4atQTHDMW(SM); };
1263 obsThFactory["mu1atQTHDMW"] = [](const StandardModel& SM) { return new mu1atQTHDMW(SM); };
1264 obsThFactory["mu2atQTHDMW"] = [](const StandardModel& SM) { return new mu2atQTHDMW(SM); };
1265 obsThFactory["mu3atQTHDMW"] = [](const StandardModel& SM) { return new mu3atQTHDMW(SM); };
1266 obsThFactory["mu4atQTHDMW"] = [](const StandardModel& SM) { return new mu4atQTHDMW(SM); };
1267 obsThFactory["mu5atQTHDMW"] = [](const StandardModel& SM) { return new mu5atQTHDMW(SM); };
1268 obsThFactory["mu6atQTHDMW"] = [](const StandardModel& SM) { return new mu6atQTHDMW(SM); };
1269 obsThFactory["nu1atQTHDMW"] = [](const StandardModel& SM) { return new nu1atQTHDMW(SM); };
1270 obsThFactory["omega1atQTHDMW"] = [](const StandardModel& SM) { return new omega1atQTHDMW(SM); };
1271 obsThFactory["kappa1atQTHDMW"] = [](const StandardModel& SM) { return new kappa1atQTHDMW(SM); };
1272 obsThFactory["nu2atQTHDMW"] = [](const StandardModel& SM) { return new nu2atQTHDMW(SM); };
1273 obsThFactory["omega2atQTHDMW"] = [](const StandardModel& SM) { return new omega2atQTHDMW(SM); };
1274 obsThFactory["kappa2atQTHDMW"] = [](const StandardModel& SM) { return new kappa2atQTHDMW(SM); };
1275 obsThFactory["nu4atQTHDMW"] = [](const StandardModel& SM) { return new nu4atQTHDMW(SM); };
1276 obsThFactory["omega4atQTHDMW"] = [](const StandardModel& SM) { return new omega4atQTHDMW(SM); };
1277 obsThFactory["nu3atQTHDMW"] = [](const StandardModel& SM) { return new nu3atQTHDMW(SM); };
1278 obsThFactory["nu5atQTHDMW"] = [](const StandardModel& SM) { return new nu5atQTHDMW(SM); };
1279 //----- Positivity constraints -----
1280 obsThFactory["THDMWpositivity1"] = [](const StandardModel& SM) { return new THDMWpositivity1(SM); };
1281 obsThFactory["THDMWpositivity2"] = [](const StandardModel& SM) { return new THDMWpositivity2(SM); };
1282 obsThFactory["THDMWpositivity3"] = [](const StandardModel& SM) { return new THDMWpositivity3(SM); };
1283 obsThFactory["THDMWpositivity4"] = [](const StandardModel& SM) { return new THDMWpositivity4(SM); };
1284 obsThFactory["THDMWpositivity5"] = [](const StandardModel& SM) { return new THDMWpositivity5(SM); };
1285 obsThFactory["THDMWpositivity6"] = [](const StandardModel& SM) { return new THDMWpositivity6(SM); };
1286 obsThFactory["THDMWpositivity7"] = [](const StandardModel& SM) { return new THDMWpositivity7(SM); };
1287 obsThFactory["THDMWpositivity8"] = [](const StandardModel& SM) { return new THDMWpositivity8(SM); };
1288 obsThFactory["THDMWpositivity9"] = [](const StandardModel& SM) { return new THDMWpositivity9(SM); };
1289 obsThFactory["THDMWpositivity10"] = [](const StandardModel& SM) { return new THDMWpositivity10(SM); };
1290 obsThFactory["THDMWpositivity11"] = [](const StandardModel& SM) { return new THDMWpositivity11(SM); };
1291 obsThFactory["THDMWpositivity12"] = [](const StandardModel& SM) { return new THDMWpositivity12(SM); };
1292 obsThFactory["THDMWpositiveMassSquares"] = [](const StandardModel& SM) { return new THDMWpositiveMassSquares(SM); };
1293 //----- Tree-level unitarity constraints -----
1294 obsThFactory["THDMWunitarity1"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 0); };
1295 obsThFactory["THDMWunitarity2"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 1); };
1296 obsThFactory["THDMWunitarity3"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 2); };
1297 obsThFactory["THDMWunitarity4"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 3); };
1298 obsThFactory["THDMWunitarity5"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 4); };
1299 obsThFactory["THDMWunitarity6"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 5); };
1300 obsThFactory["THDMWunitarity7"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 6); };
1301 obsThFactory["THDMWunitarity8"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 7); };
1302 obsThFactory["THDMWunitarity9"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 8); };
1303 obsThFactory["THDMWunitarity10"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 9); };
1304 obsThFactory["THDMWunitarity11"] = [=](const StandardModel& SM) { return new THDMWunitarityLO(SM, 10); };
1305 //----- One-loop unitarity constraints -----
1306 obsThFactory["THDMWNLOunitarity1"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 0); };
1307 obsThFactory["THDMWNLOunitarity2"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 1); };
1308 obsThFactory["THDMWNLOunitarity3"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 2); };
1309 obsThFactory["THDMWNLOunitarity4"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 3); };
1310 obsThFactory["THDMWNLOunitarity5"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 4); };
1311 obsThFactory["THDMWNLOunitarity6"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 5); };
1312 obsThFactory["THDMWNLOunitarity7"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 6); };
1313 obsThFactory["THDMWNLOunitarity8"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 7); };
1314 obsThFactory["THDMWNLOunitarity9"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 8); };
1315 obsThFactory["THDMWNLOunitarity10"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 9); };
1316 obsThFactory["THDMWNLOunitarity11"] = [=](const StandardModel& SM) { return new THDMWunitarityNLO(SM, 10); };
1317 //----- One-loop "plus" unitarity constraints -----
1318 obsThFactory["THDMWNLOpunitarity1"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 0); };
1319 obsThFactory["THDMWNLOpunitarity2"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 1); };
1320 obsThFactory["THDMWNLOpunitarity3"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 2); };
1321 obsThFactory["THDMWNLOpunitarity4"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 3); };
1322 obsThFactory["THDMWNLOpunitarity5"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 4); };
1323 obsThFactory["THDMWNLOpunitarity6"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 5); };
1324 obsThFactory["THDMWNLOpunitarity7"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 6); };
1325 obsThFactory["THDMWNLOpunitarity8"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 7); };
1326 obsThFactory["THDMWNLOpunitarity9"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 8); };
1327 obsThFactory["THDMWNLOpunitarity10"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 9); };
1328 obsThFactory["THDMWNLOpunitarity11"] = [=](const StandardModel& SM) { return new THDMWunitarityNLOp(SM, 10); };
1329 //----- R' criteria for perturbative unitarity -----
1330 obsThFactory["THDMWunitarityRp1"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 0); };
1331 obsThFactory["THDMWunitarityRp2"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 1); };
1332 obsThFactory["THDMWunitarityRp3"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 2); };
1333 obsThFactory["THDMWunitarityRp4"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 3); };
1334 obsThFactory["THDMWunitarityRp5"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 4); };
1335 obsThFactory["THDMWunitarityRp6"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 5); };
1336 obsThFactory["THDMWunitarityRp7"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 6); };
1337 obsThFactory["THDMWunitarityRp8"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 7); };
1338 obsThFactory["THDMWunitarityRp9"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 8); };
1339 obsThFactory["THDMWunitarityRp10"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 9); };
1340 obsThFactory["THDMWunitarityRp11"] = [=](const StandardModel& SM) { return new THDMWunitarityRp(SM, 10); };
1341 //----- Physical parameters -----
1342 obsThFactory["m12sqTHDMW"] = [](const StandardModel& SM) { return new m12sqTHDMW(SM); };
1343 obsThFactory["m11sqTHDMW"] = [](const StandardModel& SM) { return new m11sqTHDMW(SM); };
1344 obsThFactory["m22sqTHDMW"] = [](const StandardModel& SM) { return new m22sqTHDMW(SM); };
1345 obsThFactory["mhsqTHDMW"] = [](const StandardModel& SM) { return new mhsqTHDMW(SM); };
1346 obsThFactory["mhTHDMW"] = [](const StandardModel& SM) { return new mhTHDMW(SM); };
1347 obsThFactory["mHHsqTHDMW"] = [](const StandardModel& SM) { return new mHHsqTHDMW(SM); };
1348 obsThFactory["mHHTHDMW"] = [](const StandardModel& SM) { return new mHHTHDMW(SM); };
1349 obsThFactory["mAsqTHDMW"] = [](const StandardModel& SM) { return new mAsqTHDMW(SM); };
1350 obsThFactory["mATHDMW"] = [](const StandardModel& SM) { return new mATHDMW(SM); };
1351 obsThFactory["mSpsqTHDMW"] = [](const StandardModel& SM) { return new mSpsqTHDMW(SM); };
1352 obsThFactory["mSpTHDMW"] = [](const StandardModel& SM) { return new mSpTHDMW(SM); };
1353 obsThFactory["mSRsqTHDMW"] = [](const StandardModel& SM) { return new mSRsqTHDMW(SM); };
1354 obsThFactory["mSRTHDMW"] = [](const StandardModel& SM) { return new mSRTHDMW(SM); };
1355 obsThFactory["mSIsqTHDMW"] = [](const StandardModel& SM) { return new mSIsqTHDMW(SM); };
1356 obsThFactory["mSITHDMW"] = [](const StandardModel& SM) { return new mSITHDMW(SM); };
1357 obsThFactory["mAmmHH_THDMW"] = [](const StandardModel& SM) { return new mAmmHH_THDMW(SM); };
1358 obsThFactory["mHHmmA_THDMW"] = [](const StandardModel& SM) { return new mHHmmA_THDMW(SM); };
1359 obsThFactory["mAmmSR_THDMW"] = [](const StandardModel& SM) { return new mAmmSR_THDMW(SM); };
1360 obsThFactory["mSRmmA_THDMW"] = [](const StandardModel& SM) { return new mSRmmA_THDMW(SM); };
1361 obsThFactory["mAmmSI_THDMW"] = [](const StandardModel& SM) { return new mAmmSI_THDMW(SM); };
1362 obsThFactory["mSImmA_THDMW"] = [](const StandardModel& SM) { return new mSImmA_THDMW(SM); };
1363 obsThFactory["mHHmmSR_THDMW"] = [](const StandardModel& SM) { return new mHHmmSR_THDMW(SM); };
1364 obsThFactory["mSRmmHH_THDMW"] = [](const StandardModel& SM) { return new mSRmmHH_THDMW(SM); };
1365 obsThFactory["mHHmmSI_THDMW"] = [](const StandardModel& SM) { return new mHHmmSI_THDMW(SM); };
1366 obsThFactory["mSImmHH_THDMW"] = [](const StandardModel& SM) { return new mSImmHH_THDMW(SM); };
1367 obsThFactory["mSRmmSI_THDMW"] = [](const StandardModel& SM) { return new mSRmmSI_THDMW(SM); };
1368 obsThFactory["mSImmSR_THDMW"] = [](const StandardModel& SM) { return new mSImmSR_THDMW(SM); };
1369 obsThFactory["mSpmmSI_THDMW"] = [](const StandardModel& SM) { return new mSpmmSI_THDMW(SM); };
1370 obsThFactory["mSpmmSR_THDMW"] = [](const StandardModel& SM) { return new mSpmmSR_THDMW(SM); };
1371 obsThFactory["mSRmmSp_THDMW"] = [](const StandardModel& SM) { return new mSRmmSp_THDMW(SM); };
1372 obsThFactory["mSImmSp_THDMW"] = [](const StandardModel& SM) { return new mSImmSp_THDMW(SM); };
1373 //----- Higgs observables -----
1374 obsThFactory["rh_gg_THDMW"] = [](const StandardModel& SM) { return new rh_gg_THDMW(SM); };
1375 obsThFactory["rh_gaga_THDMW"] = [](const StandardModel& SM) { return new rh_gaga_THDMW(SM); };
1376 obsThFactory["rh_Zga_THDMW"] = [](const StandardModel& SM) { return new rh_Zga_THDMW(SM); };
1377 //----- Direct Searches -----
1378 obsThFactory["Hobs_pp_Sr_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Sr_tt_ATLAS13(SM); };
1379 obsThFactory["log10_pp_Sr_tt_TH13"] = [](const StandardModel& SM) { return new log10_pp_Sr_tt_TH13(SM); };
1380 obsThFactory["Hobs_pp_Srtt_tttt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Srtt_tttt_ATLAS13(SM); };
1381 obsThFactory["log10_pp_Srtt_tttt_TH13"] = [](const StandardModel& SM) { return new log10_pp_Srtt_tttt_TH13(SM); };
1382 obsThFactory["Hobs_pp_Sr_jj_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Sr_jj_CMS13(SM); };
1383 obsThFactory["log10_pp_Sr_jj_TH13"] = [](const StandardModel& SM) { return new log10_pp_Sr_jj_TH13(SM); };
1384 obsThFactory["Hobs_pp_SrSr_jjjj_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_SrSr_jjjj_ATLAS13(SM); };
1385 obsThFactory["log10_pp_SrSr_jjjj_TH13"] = [](const StandardModel& SM) { return new log10_pp_SrSr_jjjj_TH13(SM); };
1386 obsThFactory["Hobs_pp_Stb_tbtb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Stb_tbtb_ATLAS13(SM); };
1387 obsThFactory["log10_pp_Stb_tbtb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Stb_tbtb_TH13(SM); };
1388 obsThFactory["Hobs_pp_Sitt_tttt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_Sitt_tttt_ATLAS13(SM); };
1389 obsThFactory["log10_pp_Sitt_tttt_TH13"] = [](const StandardModel& SM) { return new log10_pp_Sitt_tttt_TH13(SM); };
1390 obsThFactory["Hobs_pp_Srbb_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Srbb_bbbb_CMS13(SM); };
1391 obsThFactory["log10_pp_Srbb_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Srbb_bbbb_TH13(SM); };
1392 obsThFactory["Hobs_pp_Srbb_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Srbb_bbbb_CMS8(SM); };
1393 obsThFactory["log10_pp_Srbb_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_Srbb_bbbb_TH8(SM); };
1394 obsThFactory["Hobs_pp_Sibb_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Sibb_bbbb_CMS13(SM); };
1395 obsThFactory["log10_pp_Sibb_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Sibb_bbbb_TH13(SM); };
1396 obsThFactory["Hobs_pp_Sibb_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Sibb_bbbb_CMS8(SM); };
1397 obsThFactory["log10_pp_Sibb_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_Sibb_bbbb_TH8(SM); };
1398 obsThFactory["Hobs_pp_Sr_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Sr_bb_CMS13(SM); };
1399 obsThFactory["log10_pp_Sr_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Sr_bb_TH13(SM); };
1400 obsThFactory["Hobs_pp_Sr_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Sr_bb_CMS8(SM); };
1401 obsThFactory["log10_pp_Sr_bb_TH8"] = [](const StandardModel& SM) { return new log10_pp_Sr_bb_TH8(SM); };
1402 obsThFactory["Hobs_pp_Si_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_Si_bb_CMS13(SM); };
1403 obsThFactory["log10_pp_Si_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_Si_bb_TH13(SM); };
1404 obsThFactory["log10_pp_Si_bb_TH8"] = [](const StandardModel& SM) { return new log10_pp_Si_bb_TH8(SM); };
1405 obsThFactory["Hobs_pp_Si_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_Si_bb_CMS8(SM); };
1406
1407 //obsThFactory["logpp_SrSr_jjjj_TH13"] = boost::factory<logpp_SrSr_jjjj_TH13*>();
1408 //----- EWPO ------
1409 obsThFactory["Rb0_THDMW"] = [](const StandardModel& SM) { return new Rb0THDMW(SM); };
1410 //----- STU ------
1411 obsThFactory["DeltaS_THDMW"] = [](const StandardModel& SM) { return new THDMWDeltaS(SM); };
1412 obsThFactory["DeltaT_THDMW"] = [](const StandardModel& SM) { return new THDMWDeltaT(SM); };
1413 obsThFactory["DeltaU_THDMW"] = [](const StandardModel& SM) { return new THDMWDeltaU(SM); };
1414
1415 /* END: REMOVE FROM THE PACKAGE */
1416
1417 //----- GeorgiMachacek observables -----
1418 //----- GeorgiMachacek quantities -----
1419 obsThFactory["tanbetaGM"] = [](const StandardModel& SM) { return new tanbetaGM(SM); };
1420 obsThFactory["m1sqGM"] = [](const StandardModel& SM) { return new m1sqGM(SM); };
1421 obsThFactory["m2sqGM"] = [](const StandardModel& SM) { return new m2sqGM(SM); };
1422 obsThFactory["lambda1GM"] = [](const StandardModel& SM) { return new lambda1GM(SM); };
1423 obsThFactory["lambda2GM"] = [](const StandardModel& SM) { return new lambda2GM(SM); };
1424 obsThFactory["lambda3GM"] = [](const StandardModel& SM) { return new lambda3GM(SM); };
1425 obsThFactory["lambda4GM"] = [](const StandardModel& SM) { return new lambda4GM(SM); };
1426 obsThFactory["lambda5GM"] = [](const StandardModel& SM) { return new lambda5GM(SM); };
1427 obsThFactory["vPhiGM"] = [](const StandardModel& SM) { return new vPhiGM(SM); };
1428 obsThFactory["GMmHh"] = [](const StandardModel& SM) { return new GMmass_mHh(SM); };
1429 obsThFactory["GMmA"] = [](const StandardModel& SM) { return new GMmass_mA(SM); };
1430 obsThFactory["GMmH5"] = [](const StandardModel& SM) { return new GMmass_mH5(SM); };
1431 obsThFactory["GMmHlmmHh"] = [](const StandardModel& SM) { return new GMmassdifference_mHlmmHh(SM); };
1432 obsThFactory["GMmHhmmHl"] = [](const StandardModel& SM) { return new GMmassdifference_mHhmmHl(SM); };
1433 obsThFactory["GMmHlmmA"] = [](const StandardModel& SM) { return new GMmassdifference_mHlmmA(SM); };
1434 obsThFactory["GMmAmmHl"] = [](const StandardModel& SM) { return new GMmassdifference_mAmmHl(SM); };
1435 obsThFactory["GMmHlmmH5"] = [](const StandardModel& SM) { return new GMmassdifference_mHlmmH5(SM); };
1436 obsThFactory["GMmH5mmHl"] = [](const StandardModel& SM) { return new GMmassdifference_mH5mmHl(SM); };
1437 obsThFactory["GMmHhmmA"] = [](const StandardModel& SM) { return new GMmassdifference_mHhmmA(SM); };
1438 obsThFactory["GMmAmmHh"] = [](const StandardModel& SM) { return new GMmassdifference_mAmmHh(SM); };
1439 obsThFactory["GMmHhmmH5"] = [](const StandardModel& SM) { return new GMmassdifference_mHhmmH5(SM); };
1440 obsThFactory["GMmH5mmHh"] = [](const StandardModel& SM) { return new GMmassdifference_mH5mmHh(SM); };
1441 obsThFactory["GMmAmmH5"] = [](const StandardModel& SM) { return new GMmassdifference_mAmmH5(SM); };
1442 obsThFactory["GMmH5mmA"] = [](const StandardModel& SM) { return new GMmassdifference_mH5mmA(SM); };
1443 obsThFactory["GMGammah"] = [](const StandardModel& SM) { return new GMGammah(SM); };
1444 obsThFactory["GMGammaH1"] = [](const StandardModel& SM) { return new GMGammaH1(SM); };
1445 obsThFactory["GMGammaH3"] = [](const StandardModel& SM) { return new GMGammaH3(SM); };
1446 obsThFactory["GMGammaH3p"] = [](const StandardModel& SM) { return new GMGammaH3p(SM); };
1447 obsThFactory["GMGammaH5"] = [](const StandardModel& SM) { return new GMGammaH5(SM); };
1448 obsThFactory["GMGammaH5p"] = [](const StandardModel& SM) { return new GMGammaH5p(SM); };
1449 obsThFactory["GMGammaH5pp"] = [](const StandardModel& SM) { return new GMGammaH5pp(SM); };
1450 obsThFactory["GMghhh"] = [](const StandardModel& SM) { return new GMghhh(SM); };
1451 //----- Tree-level unitarity constraints -----
1452 obsThFactory["GMunitarity1"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 0); };
1453 obsThFactory["GMunitarity2"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 1); };
1454 obsThFactory["GMunitarity3"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 2); };
1455 obsThFactory["GMunitarity4"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 3); };
1456 obsThFactory["GMunitarity5"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 4); };
1457 obsThFactory["GMunitarity6"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 5); };
1458 obsThFactory["GMunitarity7"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 6); };
1459 obsThFactory["GMunitarity8"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 7); };
1460 obsThFactory["GMunitarity9"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 8); };
1461 obsThFactory["GMunitarity10"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 9); };
1462 obsThFactory["GMunitarity11"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 10); };
1463 obsThFactory["GMunitarity12"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 11); };
1464 obsThFactory["GMunitarity13"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 12); };
1465 obsThFactory["GMunitarity14"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 13); };
1466 obsThFactory["GMunitarity15"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 14); };
1467 obsThFactory["GMunitarity16"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 15); };
1468 obsThFactory["GMunitarity17"] = [=](const StandardModel& SM) { return new GMunitarityLO(SM, 16); };
1469 //----- Positivity constraints -----
1470 obsThFactory["GMpositivity1"] = [](const StandardModel& SM) { return new GMpositivity1(SM); };
1471 obsThFactory["GMpositivity2"] = [](const StandardModel& SM) { return new GMpositivity2(SM); };
1472 obsThFactory["GMpositivity3"] = [](const StandardModel& SM) { return new GMpositivity3(SM); };
1473 obsThFactory["GMpositivity4"] = [](const StandardModel& SM) { return new GMpositivity4(SM); };
1474 //----- Higgs observables -----
1475 obsThFactory["rh_gaga_GM"] = [](const StandardModel& SM) { return new rh_gaga_GM(SM); };
1476 obsThFactory["rh_Zga_GM"] = [](const StandardModel& SM) { return new rh_Zga_GM(SM); };
1477 //----- Direct Higgs searches -----
1478 obsThFactory["BR_H1_tt_GM"] = [](const StandardModel& SM) { return new BR_H1_tt_GM(SM); };
1479 obsThFactory["BR_H1_bb_GM"] = [](const StandardModel& SM) { return new BR_H1_bb_GM(SM); };
1480 obsThFactory["BR_H1_tautau_GM"] = [](const StandardModel& SM) { return new BR_H1_tautau_GM(SM); };
1481 obsThFactory["BR_H1_WW_GM"] = [](const StandardModel& SM) { return new BR_H1_WW_GM(SM); };
1482 obsThFactory["BR_H1_ZZ_GM"] = [](const StandardModel& SM) { return new BR_H1_ZZ_GM(SM); };
1483 obsThFactory["BR_H1_gaga_GM"] = [](const StandardModel& SM) { return new BR_H1_gaga_GM(SM); };
1484 obsThFactory["BR_H1_Zga_GM"] = [](const StandardModel& SM) { return new BR_H1_Zga_GM(SM); };
1485 obsThFactory["BR_H1_H3Z_GM"] = [](const StandardModel& SM) { return new BR_H1_H3Z_GM(SM); };
1486 obsThFactory["BR_H1_H3pW_GM"] = [](const StandardModel& SM) { return new BR_H1_H3pW_GM(SM); };
1487 obsThFactory["BR_H1_hh_GM"] = [](const StandardModel& SM) { return new BR_H1_hh_GM(SM); };
1488 obsThFactory["BR_H1_H3H3_GM"] = [](const StandardModel& SM) { return new BR_H1_H3H3_GM(SM); };
1489 obsThFactory["BR_H1_H3pH3m_GM"] = [](const StandardModel& SM) { return new BR_H1_H3pH3m_GM(SM); };
1490 obsThFactory["BR_H1_H5H5_GM"] = [](const StandardModel& SM) { return new BR_H1_H5H5_GM(SM); };
1491 obsThFactory["BR_H1_H5pH5m_GM"] = [](const StandardModel& SM) { return new BR_H1_H5pH5m_GM(SM); };
1492 obsThFactory["BR_H1_H5ppH5mm_GM"] = [](const StandardModel& SM) { return new BR_H1_H5ppH5mm_GM(SM); };
1493 obsThFactory["BR_H3_tt_GM"] = [](const StandardModel& SM) { return new BR_H3_tt_GM(SM); };
1494 obsThFactory["BR_H3_bb_GM"] = [](const StandardModel& SM) { return new BR_H3_bb_GM(SM); };
1495 obsThFactory["BR_H3_tautau_GM"] = [](const StandardModel& SM) { return new BR_H3_tautau_GM(SM); };
1496 obsThFactory["BR_H3_gaga_GM"] = [](const StandardModel& SM) { return new BR_H3_gaga_GM(SM); };
1497 obsThFactory["BR_H3_Zga_GM"] = [](const StandardModel& SM) { return new BR_H3_Zga_GM(SM); };
1498 obsThFactory["BR_H3_hZ_GM"] = [](const StandardModel& SM) { return new BR_H3_hZ_GM(SM); };
1499 obsThFactory["BR_H3_H1Z_GM"] = [](const StandardModel& SM) { return new BR_H3_H1Z_GM(SM); };
1500 obsThFactory["BR_H3_H5Z_GM"] = [](const StandardModel& SM) { return new BR_H3_H5Z_GM(SM); };
1501 obsThFactory["BR_H3_H5pW_GM"] = [](const StandardModel& SM) { return new BR_H3_H5pW_GM(SM); };
1502 obsThFactory["BR_H3p_taunu_GM"] = [](const StandardModel& SM) { return new BR_H3p_taunu_GM(SM); };
1503 obsThFactory["BR_H3p_tb_GM"] = [](const StandardModel& SM) { return new BR_H3p_tb_GM(SM); };
1504 obsThFactory["BR_H3p_hW_GM"] = [](const StandardModel& SM) { return new BR_H3p_hW_GM(SM); };
1505 obsThFactory["BR_H3p_H1W_GM"] = [](const StandardModel& SM) { return new BR_H3p_H1W_GM(SM); };
1506 obsThFactory["BR_H3p_H5W_GM"] = [](const StandardModel& SM) { return new BR_H3p_H5W_GM(SM); };
1507 obsThFactory["BR_H3p_H5pZ_GM"] = [](const StandardModel& SM) { return new BR_H3p_H5pZ_GM(SM); };
1508 obsThFactory["BR_H3p_H5ppW_GM"] = [](const StandardModel& SM) { return new BR_H3p_H5ppW_GM(SM); };
1509 obsThFactory["BR_H5_WW_GM"] = [](const StandardModel& SM) { return new BR_H5_WW_GM(SM); };
1510 obsThFactory["BR_H5_ZZ_GM"] = [](const StandardModel& SM) { return new BR_H5_ZZ_GM(SM); };
1511 obsThFactory["BR_H5_gaga_GM"] = [](const StandardModel& SM) { return new BR_H5_gaga_GM(SM); };
1512 obsThFactory["BR_H5_Zga_GM"] = [](const StandardModel& SM) { return new BR_H5_Zga_GM(SM); };
1513 obsThFactory["BR_H5_H3Z_GM"] = [](const StandardModel& SM) { return new BR_H5_H3Z_GM(SM); };
1514 obsThFactory["BR_H5_H3pW_GM"] = [](const StandardModel& SM) { return new BR_H5_H3pW_GM(SM); };
1515 obsThFactory["BR_H5_H3H3_GM"] = [](const StandardModel& SM) { return new BR_H5_H3H3_GM(SM); };
1516 obsThFactory["BR_H5_H3pH3m_GM"] = [](const StandardModel& SM) { return new BR_H5_H3pH3m_GM(SM); };
1517 obsThFactory["BR_H5p_WZ_GM"] = [](const StandardModel& SM) { return new BR_H5p_WZ_GM(SM); };
1518 obsThFactory["BR_H5p_H3W_GM"] = [](const StandardModel& SM) { return new BR_H5p_H3W_GM(SM); };
1519 obsThFactory["BR_H5p_H3pZ_GM"] = [](const StandardModel& SM) { return new BR_H5p_H3pZ_GM(SM); };
1520 obsThFactory["BR_H5p_H3pH3_GM"] = [](const StandardModel& SM) { return new BR_H5p_H3pH3_GM(SM); };
1521 obsThFactory["BR_H5pp_WW_GM"] = [](const StandardModel& SM) { return new BR_H5pp_WW_GM(SM); };
1522 obsThFactory["BR_H5pp_H3pW_GM"] = [](const StandardModel& SM) { return new BR_H5pp_H3pW_GM(SM); };
1523 obsThFactory["BR_H5pp_H3pH3p_GM"] = [](const StandardModel& SM) { return new BR_H5pp_H3pH3p_GM(SM); };
1524 obsThFactory["Hobs_tt_H1_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_tt_H1_tt_ATLAS13(SM); };
1525 obsThFactory["Hobs_bb_H1_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H1_tt_ATLAS13(SM); };
1526 obsThFactory["Hobs_tt_H3_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_tt_H3_tt_ATLAS13(SM); };
1527 obsThFactory["Hobs_bb_H3_tt_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_tt_ATLAS13(SM); };
1528 obsThFactory["Hobs_bb_H1_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_H1_bb_CMS8(SM); };
1529 obsThFactory["Hobs_gg_H1_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_bb_CMS8(SM); };
1530 obsThFactory["Hobs_pp_H1_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_bb_CMS13(SM); };
1531 obsThFactory["Hobs_bb_H1_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H1_bb_CMS13(SM); };
1532 obsThFactory["Hobs_bb_H3_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_H3_bb_CMS8(SM); };
1533 obsThFactory["Hobs_gg_H3_bb_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_bb_CMS8(SM); };
1534 obsThFactory["Hobs_pp_H3_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H3_bb_CMS13(SM); };
1535 obsThFactory["Hobs_bb_H3_bb_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_bb_CMS13(SM); };
1536 obsThFactory["Hobs_gg_H1_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_tautau_CMS8(SM); };
1537 obsThFactory["Hobs_bb_H1_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_H1_tautau_CMS8(SM); };
1538 obsThFactory["Hobs_gg_H1_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_tautau_ATLAS13(SM); };
1539 obsThFactory["Hobs_gg_H1_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_tautau_CMS13(SM); };
1540 obsThFactory["Hobs_bb_H1_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H1_tautau_ATLAS13(SM); };
1541 obsThFactory["Hobs_bb_H1_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H1_tautau_CMS13(SM); };
1542 obsThFactory["Hobs_gg_H1_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_tautau_ATLAS8(SM); };
1543 obsThFactory["Hobs_bb_H1_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bb_H1_tautau_ATLAS8(SM); };
1544 obsThFactory["Hobs_gg_H3_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_tautau_ATLAS8(SM); };
1545 obsThFactory["Hobs_gg_H3_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_tautau_CMS8(SM); };
1546 obsThFactory["Hobs_bb_H3_tautau_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_bb_H3_tautau_ATLAS8(SM); };
1547 obsThFactory["Hobs_bb_H3_tautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_bb_H3_tautau_CMS8(SM); };
1548 obsThFactory["Hobs_gg_H3_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_tautau_ATLAS13(SM); };
1549 obsThFactory["Hobs_gg_H3_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_tautau_CMS13(SM); };
1550 obsThFactory["Hobs_bb_H3_tautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_tautau_ATLAS13(SM); };
1551 obsThFactory["Hobs_bb_H3_tautau_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_tautau_CMS13(SM); };
1552 obsThFactory["Hobs_gg_H1_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_gaga_ATLAS8(SM); };
1553 obsThFactory["Hobs_pp_H1_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_gaga_ATLAS13(SM); };
1554 obsThFactory["Hobs_gg_H1_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_gaga_CMS13(SM); };
1555 obsThFactory["Hobs_gg_H3_gaga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_gaga_ATLAS8(SM); };
1556 obsThFactory["Hobs_pp_H3_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H3_gaga_ATLAS13(SM); };
1557 obsThFactory["Hobs_gg_H3_gaga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_gaga_CMS13(SM); };
1558 obsThFactory["Hobs_pp_H5_gaga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5_gaga_ATLAS13(SM); };
1559 obsThFactory["Hobs_pp_H1_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_Zga_llga_ATLAS8(SM); };
1560 obsThFactory["Hobs_pp_H1_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_Zga_llga_CMS8(SM); };
1561 obsThFactory["Hobs_gg_H1_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_Zga_llga_ATLAS13(SM); };
1562 obsThFactory["Hobs_gg_H1_Zga_qqga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_Zga_qqga_ATLAS13(SM); };
1563 obsThFactory["Hobs_gg_H1_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_Zga_CMS13(SM); };
1564 obsThFactory["Hobs_pp_H3_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3_Zga_llga_ATLAS8(SM); };
1565 obsThFactory["Hobs_pp_H3_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3_Zga_llga_CMS8(SM); };
1566 obsThFactory["Hobs_gg_H3_Zga_llga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_Zga_llga_ATLAS13(SM); };
1567 obsThFactory["Hobs_gg_H3_Zga_qqga_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_Zga_qqga_ATLAS13(SM); };
1568 obsThFactory["Hobs_gg_H3_Zga_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_Zga_CMS13(SM); };
1569 obsThFactory["Hobs_pp_H5_Zga_llga_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5_Zga_llga_ATLAS8(SM); };
1570 obsThFactory["Hobs_pp_H5_Zga_llga_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5_Zga_llga_CMS8(SM); };
1571 obsThFactory["Hobs_gg_H1_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_ZZ_ATLAS8(SM); };
1572 obsThFactory["Hobs_VV_H1_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_H1_ZZ_ATLAS8(SM); };
1573 obsThFactory["Hobs_gg_H1_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_ZZ_llllnunu_ATLAS13(SM); };
1574 obsThFactory["Hobs_VV_H1_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H1_ZZ_llllnunu_ATLAS13(SM); };
1575 obsThFactory["Hobs_gg_H1_ZZ_qqllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_ZZ_qqllnunu_ATLAS13(SM); };
1576 obsThFactory["Hobs_VV_H1_ZZ_qqllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H1_ZZ_qqllnunu_ATLAS13(SM); };
1577 obsThFactory["Hobs_pp_H1_ZZ_llqqnunull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_ZZ_llqqnunull_CMS13(SM); };
1578 obsThFactory["Hobs_pp_H1_ZZ_qqnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_ZZ_qqnunu_CMS13(SM); };
1579 obsThFactory["Hobs_VV_H5_ZZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_H5_ZZ_ATLAS8(SM); };
1580 obsThFactory["Hobs_VV_H5_ZZ_llllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H5_ZZ_llllnunu_ATLAS13(SM); };
1581 obsThFactory["Hobs_VV_H5_ZZ_qqllnunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H5_ZZ_qqllnunu_ATLAS13(SM); };
1582 obsThFactory["Hobs_pp_H5_ZZ_llqqnunull_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5_ZZ_llqqnunull_CMS13(SM); };
1583 obsThFactory["Hobs_pp_H5_ZZ_qqnunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5_ZZ_qqnunu_CMS13(SM); };
1584 obsThFactory["Hobs_gg_H1_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_WW_ATLAS8(SM); };
1585 obsThFactory["Hobs_VV_H1_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_H1_WW_ATLAS8(SM); };
1586 obsThFactory["Hobs_gg_H1_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_WW_enumunu_ATLAS13(SM); };
1587 obsThFactory["Hobs_VV_H1_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H1_WW_enumunu_ATLAS13(SM); };
1588 obsThFactory["Hobs_gg_H1_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_WW_lnuqq_ATLAS13(SM); };
1589 obsThFactory["Hobs_VV_H1_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H1_WW_lnuqq_ATLAS13(SM); };
1590 obsThFactory["Hobs_ggVV_H1_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggVV_H1_WW_lnulnu_CMS13(SM); };
1591 obsThFactory["Hobs_pp_H1_WW_lnuqq_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_WW_lnuqq_CMS13(SM); };
1592 obsThFactory["Hobs_VV_H5_WW_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_VV_H5_WW_ATLAS8(SM); };
1593 obsThFactory["Hobs_VV_H5_WW_enumunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H5_WW_enumunu_ATLAS13(SM); };
1594 obsThFactory["Hobs_VV_H5_WW_lnuqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_VV_H5_WW_lnuqq_ATLAS13(SM); };
1595 obsThFactory["Hobs_ggVV_H5_WW_lnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_ggVV_H5_WW_lnulnu_CMS13(SM); };
1596 obsThFactory["Hobs_pp_H5_WW_lnuqq_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5_WW_lnuqq_CMS13(SM); };
1597 obsThFactory["Hobs_mu_pp_H1_VV_CMS8"] = [](const StandardModel& SM) { return new Hobs_mu_pp_H1_VV_CMS8(SM); };
1598 obsThFactory["Hobs_pp_H1_VV_qqqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_VV_qqqq_ATLAS13(SM); };
1599 obsThFactory["Hobs_mu_pp_H5_VV_CMS8"] = [](const StandardModel& SM) { return new Hobs_mu_pp_H5_VV_CMS8(SM); };
1600 obsThFactory["Hobs_pp_H5_VV_qqqq_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5_VV_qqqq_ATLAS13(SM); };
1601 obsThFactory["Hobs_gg_H1_hh_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_hh_ATLAS8(SM); };
1602 obsThFactory["Hobs_pp_H1_hh_bbbb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbbb_CMS8(SM); };
1603 obsThFactory["Hobs_pp_H1_hh_gagabb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_gagabb_CMS8(SM); };
1604 obsThFactory["Hobs_gg_H1_hh_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H1_hh_bbtautau_CMS8(SM); };
1605 obsThFactory["Hobs_pp_H1_hh_bbtautau_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbtautau_CMS8(SM); };
1606 obsThFactory["Hobs_pp_H1_hh_bbbb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbbb_ATLAS13(SM); };
1607 obsThFactory["Hobs_pp_H1_hh_bbbb_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbbb_1_CMS13(SM); };
1608 obsThFactory["Hobs_pp_H1_hh_bbbb_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbbb_2_CMS13(SM); };
1609 obsThFactory["Hobs_gg_H1_hh_bbbb_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_hh_bbbb_CMS13(SM); };
1610 obsThFactory["Hobs_pp_H1_hh_gagabb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_gagabb_ATLAS13(SM); };
1611 obsThFactory["Hobs_pp_H1_hh_gagabb_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_gagabb_CMS13(SM); };
1612 obsThFactory["Hobs_pp_H1_hh_bbtautau_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbtautau_ATLAS13(SM); };
1613 obsThFactory["Hobs_pp_H1_hh_bbtautau_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbtautau_1_CMS13(SM); };
1614 obsThFactory["Hobs_pp_H1_hh_bbtautau_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bbtautau_2_CMS13(SM); };
1615 obsThFactory["Hobs_pp_H1_hh_bblnulnu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H1_hh_bblnulnu_CMS13(SM); };
1616 obsThFactory["Hobs_gg_H1_hh_gagaWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H1_hh_gagaWW_ATLAS13(SM); };
1617 obsThFactory["Hobs_gg_H3_hZ_bbZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_bbZ_ATLAS8(SM); };
1618 obsThFactory["Hobs_gg_H3_hZ_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_bbll_CMS8(SM); };
1619 obsThFactory["Hobs_gg_H3_hZ_tautauZ_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_tautauZ_ATLAS8(SM); };
1620 obsThFactory["Hobs_gg_H3_hZ_tautaull_CMS8"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_tautaull_CMS8(SM); };
1621 obsThFactory["Hobs_gg_H3_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_bbZ_ATLAS13(SM); };
1622 obsThFactory["Hobs_bb_H3_hZ_bbZ_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_hZ_bbZ_ATLAS13(SM); };
1623 obsThFactory["Hobs_gg_H3_hZ_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_bbZ_1_CMS13(SM); };
1624 obsThFactory["Hobs_bb_H3_hZ_bbZ_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_hZ_bbZ_1_CMS13(SM); };
1625 obsThFactory["Hobs_gg_H3_hZ_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_hZ_bbZ_2_CMS13(SM); };
1626 obsThFactory["Hobs_bb_H3_hZ_bbZ_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_hZ_bbZ_2_CMS13(SM); };
1627 obsThFactory["Hobs_pp_H3_H1Z_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3_H1Z_bbll_CMS8(SM); };
1628 obsThFactory["Hobs_pp_H1_H3Z_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H1_H3Z_bbll_CMS8(SM); };
1629 obsThFactory["Hobs_pp_H5_H3Z_bbll_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5_H3Z_bbll_CMS8(SM); };
1630 obsThFactory["Hobs_gg_H3_H1Z_bbll_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_gg_H3_H1Z_bbll_ATLAS13(SM); };
1631 obsThFactory["Hobs_bb_H3_H1Z_bbll_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_bb_H3_H1Z_bbll_ATLAS13(SM); };
1632 obsThFactory["Hobs_pp_H3pm_taunu_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3pm_taunu_ATLAS8(SM); };
1633 obsThFactory["Hobs_pp_H3p_taunu_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3p_taunu_CMS8(SM); };
1634 obsThFactory["Hobs_pp_H3pm_taunu_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H3pm_taunu_ATLAS13(SM); };
1635 obsThFactory["Hobs_pp_H3pm_taunu_CMS13"] = [](const StandardModel& SM) { return new Hobs_pp_H3pm_taunu_CMS13(SM); };
1636 obsThFactory["Hobs_pp_H3pm_tb_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3pm_tb_ATLAS8(SM); };
1637 obsThFactory["Hobs_pp_H3p_tb_CMS8"] = [](const StandardModel& SM) { return new Hobs_pp_H3p_tb_CMS8(SM); };
1638 obsThFactory["Hobs_pp_H3pm_tb_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H3pm_tb_ATLAS13(SM); };
1639 obsThFactory["Hobs_WZ_H5pm_WZ_qqll_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_WZ_H5pm_WZ_qqll_ATLAS8(SM); };
1640 obsThFactory["Hobs_WZ_H5pm_WZ_lnull_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_WZ_H5pm_WZ_lnull_ATLAS13(SM); };
1641 obsThFactory["Robs_WZ_H5pm_WZ_lnull_ATLAS13"] = [](const StandardModel& SM) { return new Robs_WZ_H5pm_WZ_lnull_ATLAS13(SM); };
1642 obsThFactory["Hobs_WZ_H5pm_WZ_lnull_1_CMS13"] = [](const StandardModel& SM) { return new Hobs_WZ_H5pm_WZ_lnull_1_CMS13(SM); };
1643 obsThFactory["Hobs_WZ_H5pm_WZ_lnull_2_CMS13"] = [](const StandardModel& SM) { return new Hobs_WZ_H5pm_WZ_lnull_2_CMS13(SM); };
1644 obsThFactory["Hobs_pp_H5ppmmH5mmpp_eeee_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5ppmmH5mmpp_eeee_ATLAS8(SM); };
1645 obsThFactory["Hobs_pp_H5ppmmH5mmpp_emuemu_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5ppmmH5mmpp_emuemu_ATLAS8(SM); };
1646 obsThFactory["Hobs_pp_H5ppmmH5mmpp_mumumumu_ATLAS8"] = [](const StandardModel& SM) { return new Hobs_pp_H5ppmmH5mmpp_mumumumu_ATLAS8(SM); };
1647 obsThFactory["Hobs_pp_H5ppmmH5mmpp_llll_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5ppmmH5mmpp_llll_ATLAS13(SM); };
1648 obsThFactory["Hobs_pp_H5ppmmH5mmpp_WWWW_ATLAS13"] = [](const StandardModel& SM) { return new Hobs_pp_H5ppmmH5mmpp_WWWW_ATLAS13(SM); };
1649 obsThFactory["Hobs_VV_H5ppmm_WW_jjll_CMS8"] = [](const StandardModel& SM) { return new Hobs_VV_H5ppmm_WW_jjll_CMS8(SM); };
1650 obsThFactory["Hobs_VV_H5ppmm_WW_jjll_CMS13"] = [](const StandardModel& SM) { return new Hobs_VV_H5ppmm_WW_jjll_CMS13(SM); };
1651 obsThFactory["log10_tt_H1_tt_TH13"] = [](const StandardModel& SM) { return new log10_tt_H1_tt_TH13(SM); };
1652 obsThFactory["log10_bb_H1_tt_TH13"] = [](const StandardModel& SM) { return new log10_bb_H1_tt_TH13(SM); };
1653 obsThFactory["log10_tt_H3_tt_TH13"] = [](const StandardModel& SM) { return new log10_tt_H3_tt_TH13(SM); };
1654 obsThFactory["log10_bb_H3_tt_TH13"] = [](const StandardModel& SM) { return new log10_bb_H3_tt_TH13(SM); };
1655 obsThFactory["log10_bb_H1_bb_TH8"] = [](const StandardModel& SM) { return new log10_bb_H1_bb_TH8(SM); };
1656 obsThFactory["log10_gg_H1_bb_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_bb_TH8(SM); };
1657 obsThFactory["log10_pp_H1_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_bb_TH13(SM); };
1658 obsThFactory["log10_bb_H1_bb_TH13"] = [](const StandardModel& SM) { return new log10_bb_H1_bb_TH13(SM); };
1659 obsThFactory["log10_bb_H3_bb_TH8"] = [](const StandardModel& SM) { return new log10_bb_H3_bb_TH8(SM); };
1660 obsThFactory["log10_gg_H3_bb_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_bb_TH8(SM); };
1661 obsThFactory["log10_pp_H3_bb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H3_bb_TH13(SM); };
1662 obsThFactory["log10_bb_H3_bb_TH13"] = [](const StandardModel& SM) { return new log10_bb_H3_bb_TH13(SM); };
1663 obsThFactory["log10_gg_H1_tautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_tautau_TH8(SM); };
1664 obsThFactory["log10_bb_H1_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bb_H1_tautau_TH8(SM); };
1665 obsThFactory["log10_gg_H1_tautau_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_tautau_TH13(SM); };
1666 obsThFactory["log10_bb_H1_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bb_H1_tautau_TH13(SM); };
1667 obsThFactory["log10_gg_H3_tautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_tautau_TH8(SM); };
1668 obsThFactory["log10_bb_H3_tautau_TH8"] = [](const StandardModel& SM) { return new log10_bb_H3_tautau_TH8(SM); };
1669 obsThFactory["log10_gg_H3_tautau_TH13"] = [](const StandardModel& SM) { return new log10_gg_H3_tautau_TH13(SM); };
1670 obsThFactory["log10_bb_H3_tautau_TH13"] = [](const StandardModel& SM) { return new log10_bb_H3_tautau_TH13(SM); };
1671 obsThFactory["log10_gg_H1_gaga_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_gaga_TH8(SM); };
1672 obsThFactory["log10_pp_H1_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_gaga_TH13(SM); };
1673 obsThFactory["log10_gg_H1_gaga_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_gaga_TH13(SM); };
1674 obsThFactory["log10_gg_H3_gaga_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_gaga_TH8(SM); };
1675 obsThFactory["log10_pp_H3_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_H3_gaga_TH13(SM); };
1676 obsThFactory["log10_gg_H3_gaga_TH13"] = [](const StandardModel& SM) { return new log10_gg_H3_gaga_TH13(SM); };
1677 obsThFactory["log10_pp_H5_gaga_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5_gaga_TH13(SM); };
1678 obsThFactory["log10_pp_H1_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_Zga_llga_TH8(SM); };
1679 obsThFactory["log10_gg_H1_Zga_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_Zga_TH13(SM); };
1680 obsThFactory["log10_pp_H3_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3_Zga_llga_TH8(SM); };
1681 obsThFactory["log10_gg_H3_Zga_TH13"] = [](const StandardModel& SM) { return new log10_gg_H3_Zga_TH13(SM); };
1682 obsThFactory["log10_pp_H5_Zga_llga_TH8"] = [](const StandardModel& SM) { return new log10_pp_H5_Zga_llga_TH8(SM); };
1683 obsThFactory["log10_gg_H1_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_ZZ_TH8(SM); };
1684 obsThFactory["log10_VV_H1_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_VV_H1_ZZ_TH8(SM); };
1685 obsThFactory["log10_gg_H1_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_ZZ_TH13(SM); };
1686 obsThFactory["log10_VV_H1_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_VV_H1_ZZ_TH13(SM); };
1687 obsThFactory["log10_pp_H1_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_ZZ_TH13(SM); };
1688 obsThFactory["log10_VV_H5_ZZ_TH8"] = [](const StandardModel& SM) { return new log10_VV_H5_ZZ_TH8(SM); };
1689 obsThFactory["log10_VV_H5_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_VV_H5_ZZ_TH13(SM); };
1690 obsThFactory["log10_pp_H5_ZZ_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5_ZZ_TH13(SM); };
1691 obsThFactory["log10_gg_H1_WW_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_WW_TH8(SM); };
1692 obsThFactory["log10_VV_H1_WW_TH8"] = [](const StandardModel& SM) { return new log10_VV_H1_WW_TH8(SM); };
1693 obsThFactory["log10_gg_H1_WW_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_WW_TH13(SM); };
1694 obsThFactory["log10_VV_H1_WW_TH13"] = [](const StandardModel& SM) { return new log10_VV_H1_WW_TH13(SM); };
1695 obsThFactory["log10_ggVV_H1_WW_lnulnu_TH13"] = [](const StandardModel& SM) { return new log10_ggVV_H1_WW_lnulnu_TH13(SM); };
1696 obsThFactory["log10_pp_H1_WW_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_WW_TH13(SM); };
1697 obsThFactory["log10_VV_H5_WW_TH8"] = [](const StandardModel& SM) { return new log10_VV_H5_WW_TH8(SM); };
1698 obsThFactory["log10_VV_H5_WW_TH13"] = [](const StandardModel& SM) { return new log10_VV_H5_WW_TH13(SM); };
1699 obsThFactory["log10_ggVV_H5_WW_lnulnu_TH13"] = [](const StandardModel& SM) { return new log10_ggVV_H5_WW_lnulnu_TH13(SM); };
1700 obsThFactory["log10_pp_H5_WW_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5_WW_TH13(SM); };
1701 obsThFactory["log10_pp_H1_VV_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_VV_TH8(SM); };
1702 obsThFactory["log10_mu_pp_H1_VV_TH8"] = [](const StandardModel& SM) { return new log10_mu_pp_H1_VV_TH8(SM); };
1703 obsThFactory["log10_pp_H1_VV_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_VV_TH13(SM); };
1704 obsThFactory["log10_pp_H5_VV_TH8"] = [](const StandardModel& SM) { return new log10_pp_H5_VV_TH8(SM); };
1705 obsThFactory["log10_mu_pp_H5_VV_TH8"] = [](const StandardModel& SM) { return new log10_mu_pp_H5_VV_TH8(SM); };
1706 obsThFactory["log10_pp_H5_VV_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5_VV_TH13(SM); };
1707 obsThFactory["log10_gg_H1_hh_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_hh_TH8(SM); };
1708 obsThFactory["log10_pp_H1_hh_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_TH8(SM); };
1709 obsThFactory["log10_pp_H1_hh_bbbb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_bbbb_TH8(SM); };
1710 obsThFactory["log10_pp_H1_hh_gagabb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_gagabb_TH8(SM); };
1711 obsThFactory["log10_gg_H1_hh_bbtautau_TH8"] = [](const StandardModel& SM) { return new log10_gg_H1_hh_bbtautau_TH8(SM); };
1712 obsThFactory["log10_pp_H1_hh_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_TH13(SM); };
1713 obsThFactory["log10_gg_H1_hh_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_hh_TH13(SM); };
1714 obsThFactory["log10_pp_H1_hh_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_bbbb_TH13(SM); };
1715 obsThFactory["log10_gg_H1_hh_bbbb_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_hh_bbbb_TH13(SM); };
1716 obsThFactory["log10_pp_H1_hh_gagabb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_gagabb_TH13(SM); };
1717 obsThFactory["log10_pp_H1_hh_bbtautau_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_bbtautau_TH13(SM); };
1718 obsThFactory["log10_pp_H1_hh_bblnulnu_TH13"] = [](const StandardModel& SM) { return new log10_pp_H1_hh_bblnulnu_TH13(SM); };
1719 obsThFactory["log10_gg_H1_hh_gagaWW_TH13"] = [](const StandardModel& SM) { return new log10_gg_H1_hh_gagaWW_TH13(SM); };
1720 obsThFactory["log10_gg_H3_hZ_bbZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_hZ_bbZ_TH8(SM); };
1721 obsThFactory["log10_gg_H3_hZ_bbll_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_hZ_bbll_TH8(SM); };
1722 obsThFactory["log10_gg_H3_hZ_tautauZ_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_hZ_tautauZ_TH8(SM); };
1723 obsThFactory["log10_gg_H3_hZ_tautaull_TH8"] = [](const StandardModel& SM) { return new log10_gg_H3_hZ_tautaull_TH8(SM); };
1724 obsThFactory["log10_gg_H3_hZ_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_gg_H3_hZ_bbZ_TH13(SM); };
1725 obsThFactory["log10_bb_H3_hZ_bbZ_TH13"] = [](const StandardModel& SM) { return new log10_bb_H3_hZ_bbZ_TH13(SM); };
1726 obsThFactory["log10_pp_H3_H1Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3_H1Z_bbll_TH8(SM); };
1727 obsThFactory["log10_pp_H3_H5Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3_H5Z_bbll_TH8(SM); };
1728 obsThFactory["log10_pp_H1_H3Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_H1_H3Z_bbll_TH8(SM); };
1729 obsThFactory["log10_pp_H5_H3Z_bbll_TH8"] = [](const StandardModel& SM) { return new log10_pp_H5_H3Z_bbll_TH8(SM); };
1730 obsThFactory["log10_pp_H3pm_taunu_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3pm_taunu_TH8(SM); };
1731 obsThFactory["log10_pp_H3p_taunu_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3p_taunu_TH8(SM); };
1732 obsThFactory["log10_pp_H3pm_taunu_TH13"] = [](const StandardModel& SM) { return new log10_pp_H3pm_taunu_TH13(SM); };
1733 obsThFactory["log10_pp_H3pm_tb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3pm_tb_TH8(SM); };
1734 obsThFactory["log10_pp_H3p_tb_TH8"] = [](const StandardModel& SM) { return new log10_pp_H3p_tb_TH8(SM); };
1735 obsThFactory["log10_pp_H3pm_tb_TH13"] = [](const StandardModel& SM) { return new log10_pp_H3pm_tb_TH13(SM); };
1736 obsThFactory["log10_WZ_H5pm_WZ_TH8"] = [](const StandardModel& SM) { return new log10_WZ_H5pm_WZ_TH8(SM); };
1737 obsThFactory["log10_WZ_H5pm_WZ_TH13"] = [](const StandardModel& SM) { return new log10_WZ_H5pm_WZ_TH13(SM); };
1738 obsThFactory["log10_pp_H5ppmmH5mmpp_TH8"] = [](const StandardModel& SM) { return new log10_pp_H5ppmmH5mmpp_TH8(SM); };
1739 obsThFactory["log10_pp_H5ppmmH5mmpp_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5ppmmH5mmpp_TH13(SM); };
1740 obsThFactory["log10_pp_H5ppmmH5mmpp_WWWW_TH13"] = [](const StandardModel& SM) { return new log10_pp_H5ppmmH5mmpp_WWWW_TH13(SM); };
1741 obsThFactory["log10_VV_H5ppmm_WW_TH8"] = [](const StandardModel& SM) { return new log10_VV_H5ppmm_WW_TH8(SM); };
1742 obsThFactory["log10_VV_H5ppmm_WW_TH13"] = [](const StandardModel& SM) { return new log10_VV_H5ppmm_WW_TH13(SM); };
1743
1744 obsThFactory["eps_uL"] = [](const StandardModel& SM) { return new CHRU_eps_uL(SM); };
1745 obsThFactory["eps_dL"] = [](const StandardModel& SM) { return new CHRU_eps_dL(SM); };
1746}
THDM branching ratio of to an and a boson.
Definition: CPoddHiggs.h:1940
THDM branching ratio of to a charged Higgs bosons and a boson.
Definition: CPoddHiggs.h:1982
THDM branching ratio of to an and a boson.
Definition: CPoddHiggs.h:1961
Branching ratio of to two in the GeorgiMachacek model.
THDM branching ratio of to two .
Definition: heavyHiggs.h:3956
THDM branching ratio of to an and a boson.
Definition: heavyHiggs.h:3998
THDM branching ratio of to charged Higgs bosons.
Definition: heavyHiggs.h:3977
THDM branching ratio of to a charged Higgs boson and a boson.
Definition: heavyHiggs.h:4019
THDM branching ratio of to two .
Definition: heavyHiggs.h:3935
GTHDM branching ratio of .
GTHDM branching ratio of .
Ratio of the GeneralTHDM prediction and the combined ATLAS (7+8+13 TeV) upper limit for the branching...
GTHDM branching ratio of .
DeltaQ_THDM.
DeltaQ_THDMW.
An observable class for the THDM contribution to the electroweak Peskin-Takeuchi pseudo-observable .
Definition: STU.h:58
An observable class for the THDM contribution to the electroweak Peskin-Takeuchi pseudo-observable .
Definition: STU.h:78
An observable class for the GeneralTHDM contribution to the electroweak Peskin-Takeuchi pseudo-observ...
Definition: STU.h:98
An observable class for the bilinear basis parameter .
An observable class for the bilinear basis parameter .
An observable class for the bilinear basis parameter .
A class for the absolute value and phase of NP Wilson Coefficients.
Controls that the scalar THDMW potential is bounded from below.
Definition: GMpositivity.h:32
Controls that the scalar THDMW potential is bounded from below.
Definition: GMpositivity.h:55
Controls that the scalar THDMW potential is bounded from below.
Definition: GMpositivity.h:78
Controls that the scalar THDMW potential is bounded from below.
Definition: GMpositivity.h:101
An observable class for the requirement of perturbative unitarity at leading order.
Definition: GMunitarity.h:26
Signal strength of a VBF or Vh produced h decaying to two bosons.
Signal strength of a VBF or Vh produced h decaying to two bosons.
Signal strength of a VBF or Vh produced h decaying to two quarks.
Signal strength of a VBF or Vh produced h decaying to two quarks.
Signal strength of a VBF or Vh produced h decaying to two photons.
Signal strength of a VBF or Vh produced h decaying to two gluons.
Signal strength of a VBF or Vh produced h decaying to two leptons.
Signal strength of a ggF produced h decaying to two bosons at 13 TeV.
Signal strength of a ggF produced h decaying to two bosons at 13 TeV.
Signal strength of a ggF produced h decaying to two photons at 13 TeV.
Signal strength of a ggF produced h decaying to two leptons at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two bosons at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two bosons at 8 TeV.
Signal strength of a ggF or tth produced h decaying to two bosons at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two bosons at 8 TeV.
Signal strength of a ggF or tth produced h decaying to two b quarks at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two b quarks at 8 TeV.
Signal strength of a ggF or tth produced h decaying to two photons at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two photons at 8 TeV.
Signal strength of a ggF or tth produced h decaying to two leptons at 13 TeV.
Signal strength of a ggF or tth produced h decaying to two leptons at 8 TeV.
Signal strength of an h decaying to two bosons at 13 TeV.
Signal strength of an h decaying to a boson and a photon at 13 TeV.
Signal strength of an h decaying to two b quarks at 13 TeV.
Signal strength of an h decaying to two leptons at 13 TeV.
Signal strength of a tth produced h decaying to two bosons at 13 TeV.
Signal strength of a tth produced h decaying to two bosons at 13 TeV.
Signal strength of a tth produced h decaying to two b quarks at 13 TeV.
Signal strength of a tth produced h decaying to two photons at 13 TeV.
Signal strength of a tth produced h decaying to two leptons at 13 TeV.
An observable class for the THDM contribution to the electroweak Peskin-Takeuchi pseudo-observable .
Total A decay rate in the THDM.
Definition: CPoddHiggs.h:1879
Total H decay rate in the THDM.
Definition: heavyHiggs.h:3874
Total Hp decay rate in the THDM.
Definition: chargedHiggs.h:491
decay rate in the GeneralTHDM.
decay rate in the GeneralTHDM.
Total decay rate in the GeneralTHDM.
Total h decay rate in the THDM.
Definition: lightHiggs.h:736
Total decay width of top in the GeneralTHDM.
An observable class for the quartic Higgs potential coupling .
An observable class for the quartic Higgs potential coupling .
An observable class for the quartic Higgs potential coupling .
An observable class for the quartic Higgs potential coupling .
An observable class for the quartic Higgs potential coupling .
An observable class for the quartic Higgs potential coupling .
Ratio of the prediction and OPAL upper limit for the branching ratios associated with the process .
Ratio of the prediction and combined LEP upper limit for the cross-section times branching ratios ass...
Ratio of the prediction and combined LEP upper limit for the cross-section times branching ratios ass...
Ratio of the prediction and OPAL upper limit for the branching ratios associated with the process .
Ratio of the prediction and OPAL upper limit for the branching ratios associated with the process .
Ratio of the prediction and OPAL upper limit for the branching ratios associated with the process .
Ratio of the prediction and combined LEP upper limit for the cross-section times branching ratios ass...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:535
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2299
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2215
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:451
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1795
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1543
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1711
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2047
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1963
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1879
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:577
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:1249
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:829
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:115
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:913
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:157
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:745
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:829
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1081
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:115
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1165
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:157
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:997
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio.
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio.
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:1333
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:1081
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:997
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:241
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:1207
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:409
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:367
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:493
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:451
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:787
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:31
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:871
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:535
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:493
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2257
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2173
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:409
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1753
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1501
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1585
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1669
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2005
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2089
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1921
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1459
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1333
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1249
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:241
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:577
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2593
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:661
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2635
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1039
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:31
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1123
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:73
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:787
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2341
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the signal strength of the process .
Ratio of the prediction and CMS upper limit for the signal strength of the process .
Ratio of the prediction and CMS upper limit for the signal strength of the process .
Definition: heavyHiggs.h:367
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and combined LEP upper limit for the branching ratio associated with the proc...
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and combined LEP upper limit for ratio of the GTHDM over a reference cross-se...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:619
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:661
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:1039
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:283
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:1123
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:325
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:1165
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: CPoddHiggs.h:1291
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:955
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:199
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section of the process measured by the d...
Ratio of the prediction and ATLAS upper limit for the cross section of the process measured by the d...
Ratio of the prediction and ATLAS upper limit for the cross section of the process measured by the d...
Ratio of the prediction and ATLAS upper limit for the cross section of the process measured by the d...
Ratio of the prediction and ATLAS upper limit for the cross section of the process measured by the d...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:871
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:913
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2383
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1837
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1627
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2131
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1291
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:283
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1375
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:325
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:1417
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2845
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:1207
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:199
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:619
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2803
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2509
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2551
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:703
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:2425
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2467
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2761
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2719
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:2677
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: heavyHiggs.h:745
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and CMS upper limit for the cross section of the process .
Definition: chargedHiggs.h:71
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:323
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:365
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:281
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section of the process .
Definition: chargedHiggs.h:155
Ratio of the prediction and ATLAS upper limit for the cross-section times branching ratios associated...
Ratio of the prediction and CMS upper limit for the cross-section times branching ratios associated w...
Ratio of the prediction and ATLAS upper limit for the cross-section times branching ratios associated...
Ratio of the prediction and CMS upper limit for the cross-section times branching ratios associated w...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:197
Ratio of the prediction and CMS upper limit for the cross section times branching ratio.
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:29
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Definition: chargedHiggs.h:239
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: chargedHiggs.h:113
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the signal strength of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Hobs_pp_phi2_phi1phi1_bbtautau_ATLAS13 constructor.
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the signal strength of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Hobs_pp_phi3_phi1phi1_bbtautau_ATLAS13 constructor.
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and CMS upper limit for the cross section times branching ratio of the proces...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the branching ratio of the process .
Ratio of the prediction and CMS upper limit for the branching ratio of the process .
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: CPoddHiggs.h:703
Ratio of the prediction and ATLAS upper limit for the cross section times branching ratio of the proc...
Definition: heavyHiggs.h:955
parameter of the Higgs potential
parameter of the Higgs potential
A class for the scalar masses.
A class for the approximate scalar masses.
A class for the chargino masses.
Definition: Mchargino.h:22
A class for the Higgs masses.
Definition: Mhiggs.h:23
A class for the neutralino masses.
Definition: Mneutralino.h:24
A class for the down-type-squark masses.
Definition: Msdown.h:24
A class for the charged slepton masses.
Definition: Mslepton.h:24
A class for the sneutrino masses.
Definition: Msneutrino.h:24
The (1,1) entry of the non-diagonal neutral Higgs mass square matrix.
The (1,2) entry of the non-diagonal neutral Higgs mass square matrix.
The (1,3) entry of the non-diagonal neutral Higgs mass square matrix.
The (2,2) entry of the non-diagonal neutral Higgs mass square matrix.
The (2,3) entry of the non-diagonal neutral Higgs mass square matrix.
The (3,3) entry of the non-diagonal neutral Higgs mass square matrix.
A class for the up-type-squark masses.
Definition: Msup.h:24
A class for the W-boson mass in the delta rho approximation.
Definition: Mw_dRho.h:24
A class for outputting SUSY parameters to an SLHA file.
Q_stTHDMW.
Element (1,1) of the ortogonal matrix determining the mass e/states.
Element (1,2) of the ortogonal matrix determining the mass e/states.
Element (1,3) of the ortogonal matrix determining the mass e/states.
Perturbative unitarity ratio for the minus-sign eigenvalue of the even 00 block.
Perturbative unitarity ratio for the plus-sign eigenvalue of the even 00 block.
Perturbative unitarity ratio for the minus-sign eigenvalue of the odd 00 block.
Perturbative unitarity ratio for the plus-sign eigenvalue of the odd 00 block.
Perturbative unitarity ratio for the minus-sign eigenvalue of the even 01 block.
Perturbative unitarity ratio for the plus-sign eigenvalue of the even 01 block.
Perturbative unitarity ratio for the minus-sign eigenvalue of the odd 01 block.
Perturbative unitarity ratio for the plus-sign eigenvalue of the odd 01 block.
Perturbative unitarity ratio for the eigenvalue of the odd 10 block.
Perturbative unitarity ratio for the minus-sign eigenvalue of the even 11 block.
Perturbative unitarity ratio for the plus-sign eigenvalue of the even 11 block.
Perturbative unitarity ratio for the eigenvalue of the odd 11 block.
Element (2,2) of the ortogonal matrix determining the mass e/states.
Element (2,3) of the ortogonal matrix determining the mass e/states.
Element (3,1) of the ortogonal matrix determining the mass e/states.
Element (3,2) of the ortogonal matrix determining the mass e/states.
Element (3,3) of the ortogonal matrix determining the mass e/states.
A class for decays in the THDM.
Definition: BDtaunu.h:95
A class for decays in the THDM.
Definition: BDtaunu.h:71
An observable class to calculate the Rb0THDMW observable in the THDMW.
Definition: THDMWEWPO.h:21
Relambda5atQGTHDM.
Relambda6atQGTHDM.
Relambda7atQGTHDM.
parameter of the Higgs potential
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:556
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2320
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:472
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1816
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2068
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1900
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:598
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:1270
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:850
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:136
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:934
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:178
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:766
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:850
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1102
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:136
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1186
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: heavyHiggs.h:178
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1018
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:1354
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:1018
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:262
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:1228
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:430
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:388
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:514
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:472
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:808
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:52
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:892
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:94
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:556
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:514
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2278
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2194
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:430
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1774
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1606
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2026
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2110
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1480
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1270
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: heavyHiggs.h:262
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:598
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2614
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:682
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2656
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1060
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:52
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1144
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: heavyHiggs.h:94
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:808
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2362
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:388
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:640
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:682
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:1060
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:304
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:1144
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:346
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:1186
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: CPoddHiggs.h:1312
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:976
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:220
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:892
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:934
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1858
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2152
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1312
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:304
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1396
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: heavyHiggs.h:346
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:1438
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2866
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:1228
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: heavyHiggs.h:220
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: heavyHiggs.h:640
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2824
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2530
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2572
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:724
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:2446
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2488
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2782
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2740
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:2698
Observable for the implementation of the CMS upper limit on signal strength of the process assuming ...
Definition: heavyHiggs.h:766
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: chargedHiggs.h:92
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:344
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:386
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:302
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: chargedHiggs.h:176
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:218
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:50
Observable for the implementation of the CMS upper limit on the process assuming a Gaussian likeliho...
Definition: chargedHiggs.h:260
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: chargedHiggs.h:134
Observable for the implementation of the ATLAS upper limit on the process assuming a Gaussian likeli...
Definition: CPoddHiggs.h:724
Observable for the implementation of the ATLAS upper limit on signal strength of the process assumin...
Definition: heavyHiggs.h:976
A model class for the Standard Model.
Controls that the scalar THDMW potential is bounded from below.
Controls that the scalar THDMW potential is bounded from below.
An observable class for the requirement of perturbative unitarity at leading order.
An observable class for the requirement of perturbative unitarity at next-to-leading order.
Another observable class for the requirement of perturbative unitarity at next-to-leading order.
An observable class for the requirement of perturbativity of the unitarity criteria.
std::map< std::string, std::function< ThObservable *(const StandardModel &) > > obsThFactory
Definition: ThObsFactory.h:49
void registerBSMObservables()
Signal strength of a VBF or Vh produced h decaying to two bosons.
Definition: lightHiggs.h:315
Signal strength of a VBF or Vh produced h decaying to two bosons.
Definition: lightHiggs.h:357
Signal strength of a VBF or Vh produced h decaying to two quarks.
Definition: lightHiggs.h:294
Signal strength of a VBF or Vh produced h decaying to two quarks.
Definition: lightHiggs.h:420
Signal strength of a VBF or Vh produced h decaying to two photons.
Definition: lightHiggs.h:378
Signal strength of a VBF or Vh produced h decaying to two gluons.
Definition: lightHiggs.h:399
Signal strength of a VBF or Vh produced h decaying to two leptons.
Definition: lightHiggs.h:336
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
YbottomatQ.
YtauatQ.
YtopatQ.
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
An observable class for the Higgs basis parameter .
The branching fraction from tabled values.
Definition: bsgammaTHDM.h:28
An observable class for the bilinear basis parameter .
An observable class for the bilinear basis parameter .
g1atQ.
g2atQ.
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
An observable class for the triple Higgs coupling .
Signal strength of a ggF produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:462
Signal strength of a ggF produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:504
Signal strength of a ggF produced h decaying to two b quarks at 13 TeV.
Definition: lightHiggs.h:441
Signal strength of a ggF produced h decaying to two photons at 13 TeV.
Definition: lightHiggs.h:525
Signal strength of a ggF produced h decaying to two leptons at 13 TeV.
Definition: lightHiggs.h:483
Signal strength of a ggF or tth produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:210
Signal strength of a ggF or tth produced h decaying to two bosons at 8 TeV.
Definition: lightHiggs.h:105
Signal strength of a ggF or tth produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:252
Signal strength of a ggF or tth produced h decaying to two bosons at 8 TeV.
Definition: lightHiggs.h:147
Signal strength of a ggF or tth produced h decaying to two b quarks at 13 TeV.
Definition: lightHiggs.h:189
Signal strength of a ggF or tth produced h decaying to two b quarks at 8 TeV.
Definition: lightHiggs.h:84
Signal strength of a ggF or tth produced h decaying to two photons at 13 TeV.
Definition: lightHiggs.h:273
Signal strength of a ggF or tth produced h decaying to two photons at 8 TeV.
Definition: lightHiggs.h:168
Signal strength of a ggF or tth produced h decaying to two leptons at 13 TeV.
Definition: lightHiggs.h:231
Signal strength of a ggF or tth produced h decaying to two leptons at 8 TeV.
Definition: lightHiggs.h:126
An observable class to prevent the occurence of a second deeper vacuum.
Definition: globalminimum.h:24
kappa1atQTHDMW.
kappa2atQTHDMW.
The quartic coupling lambda1 from the Higgs potential.
Definition: GMquantities.h:83
parameter of the Higgs potential
lambda1atQ.
lambda1atQTHDMW.
The quartic coupling lambda2 from the Higgs potential.
Definition: GMquantities.h:104
An observable class for the quartic Higgs potential coupling .
lambda2atQ.
lambda2atQTHDMW.
An observable class for the quartic Higgs potential coupling combination .
The quartic coupling lambda3 from the Higgs potential.
Definition: GMquantities.h:125
An observable class for the quartic Higgs potential coupling .
lambda3atQ.
lambda3atQTHDMW.
The quartic coupling lambda4 from the Higgs potential.
Definition: GMquantities.h:146
An observable class for the quartic Higgs potential coupling .
lambda4atQ.
lambda4atQTHDMW.
The quartic coupling lambda5 from the Higgs potential.
Definition: GMquantities.h:167
An observable class for the quartic Higgs potential coupling .
lambda5atQ.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3580
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3076
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3454
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3034
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3496
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3538
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3832
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1585
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1795
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1669
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1396
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1837
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3223
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3307
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:2908
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1753
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1711
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1438
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1774
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1501
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1480
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1543
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1522
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1648
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1375
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1564
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3559
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3055
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3433
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3013
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3475
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3391
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3349
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:2950
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3643
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3097
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3706
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3139
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3286
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:2887
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3202
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3601
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the signal strength of the process at 8 TeV.
Decadic logarithm of the signal strength of the process at 8 TeV.
Definition: heavyHiggs.h:2992
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1606
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1627
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1732
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1459
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1858
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1690
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: CPoddHiggs.h:1417
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section of the process at 13 TeV.
Decadic logarithm of the cross section of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3244
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3265
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3412
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3517
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3370
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:2971
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3853
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3328
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:2929
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3664
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3118
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3790
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3685
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3160
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3769
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3748
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3727
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: heavyHiggs.h:3181
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: chargedHiggs.h:470
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: chargedHiggs.h:428
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: chargedHiggs.h:449
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Definition: chargedHiggs.h:407
Decadic logarithm of the cross section times branching ratio of the process pp -> Si -> b bbar at 13 ...
Decadic logarithm of the cross section times branching ratio of the process pp -> Si -> b bbar at 8 T...
Decadic logarithm of the cross section times branching ratio of the process pp -> Si b bbar -> b bbar...
Decadic logarithm of the cross section times branching ratio of the process pp -> Si b bbar -> b bbar...
Decadic logarithm of the cross section times branching ratio of the process pp -> Si t tbar -> t tbar...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr -> b bbar at 13 ...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr -> b bbar at 8 T...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr -> j j at 13 TeV...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr -> t tbar at 13 ...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr Sr -> j j j j at...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr b bbar -> b bbar...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr b bbar -> b bbar...
Decadic logarithm of the cross section times branching ratio of the process pp -> Sr t tbar -> t tbar...
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process \log_{10}[\sigma^{\text{G...
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 8 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: heavyHiggs.h:3811
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Decadic logarithm of the cross section times branching ratio of the process at 13 TeV.
Definition: CPoddHiggs.h:1816
parameter of the Higgs potential
An observable class for the quadratic Higgs potential coupling .
m11_2atQ.
m11sqTHDMW.
m12_2atQ.
m12sqTHDMW.
The dimension 2 coupling m1sq from the Higgs potential.
Definition: GMquantities.h:41
parameter of the Higgs potential
An observable class for the quadratic Higgs potential coupling .
m22_2atQ.
m22sqTHDMW.
The dimension 2 coupling m2sq from the Higgs potential.
Definition: GMquantities.h:62
mATHDMW.
mAmmHH_THDMW.
mAmmSI_THDMW.
mAmmSR_THDMW.
mAsqTHDMW.
The mass difference between the second neutral Higgs and the SM Higgs.
The mass difference between the second neutral Higgs and the charged Higgs.
The mass difference between the third neutral Higgs and the SM Higgs.
The mass difference between the third and the second neutral Higgs.
The mass difference between the third neutral Higgs and the charged Higgs.
mHHTHDMW.
mHHmmA_THDMW.
mHHmmSI_THDMW.
mHHmmSR_THDMW.
mHHsqTHDMW.
The mass difference between the charged Higgs and the SM Higgs.
mSITHDMW.
mSImmA_THDMW.
mSImmHH_THDMW.
mSImmSR_THDMW.
mSImmSp_THDMW.
mSIsqTHDMW.
mSRTHDMW.
mSRmmA_THDMW.
mSRmmHH_THDMW.
mSRmmSI_THDMW.
mSRmmSp_THDMW.
mSRsqTHDMW.
mSpTHDMW.
mSpmmSI_THDMW.
mSpmmSR_THDMW.
mSpsqTHDMW.
The mass of the CP-odd Higgs state.
The mass of the heavy CP-even Higgs state.
The mass of the light CP-even Higgs state.
The mass of the charged Higgs state.
The difference between the masses of the CP-odd and the heavy CP-even Higgs.
The difference between the masses of the CP-odd and the heavy CP-even Higgs.
The difference between the masses of the CP-odd and the charged Higgs.
The difference between the masses of the heavy CP-even and the CP-odd Higgs.
The difference between the masses of the heavy CP-even and the charged Higgs.
The difference between the masses of the heavy CP-even and the CP-odd Higgs.
The difference between the masses of the heavy CP-even and the charged Higgs.
The difference between the masses of the charged and the CP-odd Higgs.
The difference between the masses of the charged and the heavy CP-even Higgs.
The difference between the masses of the charged and the heavy CP-even Higgs.
mhTHDMW.
mhsqTHDMW.
mu1atQTHDMW.
mu2atQTHDMW.
mu3atQTHDMW.
mu4atQTHDMW.
mu5atQTHDMW.
mu6atQTHDMW.
Signal strength of an h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:672
Signal strength of an h decaying to a boson and a photon at 13 TeV.
Definition: lightHiggs.h:714
Signal strength of an h decaying to two b quarks at 13 TeV.
Definition: lightHiggs.h:651
Signal strength of an h decaying to two leptons at 13 TeV.
Definition: lightHiggs.h:693
nu1atQTHDMW.
nu2atQTHDMW.
nu3atQTHDMW.
nu4atQTHDMW.
nu5atQTHDMW.
A class for the parameter .
Definition: BDtaunu.h:215
A class for the parameter .
Definition: BDtaunu.h:239
A class for the parametrized value of the ratio of the branching fractions of and decays in the Sta...
Definition: BDtaunu.h:191
A class for the parameter .
Definition: BDtaunu.h:143
A class for the parameter .
Definition: BDtaunu.h:167
A class for the parametrized value of the ratio of the branching fractions of and decays in the Sta...
Definition: BDtaunu.h:119
omega1atQTHDMW.
omega2atQTHDMW.
omega4atQTHDMW.
Controls that the scalar THDM potential is bounded from below.
Definition: positivity.h:52
Controls that the scalar THDM potential is bounded from below.
Definition: positivity.h:72
The ratio of the GM partial Higgs decay width into a $Z$ boson and a photon and the corresponding SM ...
Definition: GMquantities.h:251
Squared relative coupling of to a Z and a photon.
Squared relative coupling of to a boson and a photon.
Definition: lightHiggs.h:799
rh_Zga_THDMW.
Squared relative coupling of to two photons.
Squared relative coupling of to two photons.
Definition: lightHiggs.h:757
rh_gaga_THDMW.
Squared relative coupling of to two gluons.
Squared relative coupling of to two gluons.
Definition: lightHiggs.h:778
rh_gg_THDMW.
Real part of Yukawa down coupling.
Real part of Yukawa leptonic coupling.
Real part Yukawa up coupling.
The tangent of beta.
Definition: GMquantities.h:20
The tangent of beta.
The tangent of beta.
Signal strength of a tth produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:567
Signal strength of a tth produced h decaying to two bosons at 13 TeV.
Definition: lightHiggs.h:609
Signal strength of a tth produced h decaying to two b quarks at 13 TeV.
Definition: lightHiggs.h:546
Signal strength of a tth produced h decaying to two photons at 13 TeV.
Definition: lightHiggs.h:630
Signal strength of a tth produced h decaying to two leptons at 13 TeV.
Definition: lightHiggs.h:588
Minus-sign eigenvalue of the even 00 block.
Plus-sign eigenvalue of the even 00 block.
Minus-sign eigenvalue of the odd 00 block.
Plus-sign eigenvalue of the odd 00 block.
Minus-sign eigenvalue of the even 01 block.
Plus-sign eigenvalue of the even 01 block.
Minus-sign eigenvalue of the odd 01 block.
Plus-sign eigenvalue of the odd 01 block.
Eigenvalue of the scattering matrix.
Definition: unitarity.h:244
Eigenvalue of the odd 10 block.
Eigenvalue of the scattering matrix.
Definition: unitarity.h:265
Minus-sign eigenvalue of the even 11 block.
Plus-sign eigenvalue of the even 11 block.
Eigenvalue of the odd 11 block.
Eigenvalue of the scattering matrix.
Definition: unitarity.h:286
Eigenvalue of the scattering matrix.
Definition: unitarity.h:55
Eigenvalue of the scattering matrix.
Definition: unitarity.h:76
Eigenvalue of the scattering matrix.
Definition: unitarity.h:97
Eigenvalue of the scattering matrix.
Definition: unitarity.h:118
Eigenvalue of the scattering matrix.
Definition: unitarity.h:139
Eigenvalue of the scattering matrix.
Definition: unitarity.h:160
Eigenvalue of the scattering matrix.
Definition: unitarity.h:181
Eigenvalue of the scattering matrix.
Definition: unitarity.h:202
Eigenvalue of the scattering matrix.
Definition: unitarity.h:223
(B.19) of .
Definition: unitarity.h:540
(B.30) of .
Definition: unitarity.h:720
Second eigenvalue of the odd 01 block.
Definition: unitarity.h:957
First eigenvalue of the even 11 block.
Definition: unitarity.h:1014
Second eigenvalue of the even 11 block.
Definition: unitarity.h:1035
First eigenvalue of the even 00 block.
Definition: unitarity.h:774
Second eigenvalue of the even 00 block.
Definition: unitarity.h:795
First eigenvalue of the odd 00 block.
Definition: unitarity.h:816
Second eigenvalue of the odd 00 block.
Definition: unitarity.h:837
First eigenvalue of the even 01 block.
Definition: unitarity.h:858
Second eigenvalue of the even 01 block.
Definition: unitarity.h:879
First eigenvalue of the odd 01 block.
Definition: unitarity.h:936
NLO part over total second Z2-odd 01 eigenvalue (corresponding to unitarityNLOev10).
Definition: unitarity.h:1697
NLO part over total first Z2-even 11 eigenvalue (corresponding to unitarityNLOev13).
Definition: unitarity.h:1752
NLO part over total second Z2-even 11 eigenvalue (corresponding to unitarityNLOev14).
Definition: unitarity.h:1773
NLO part over total Z2-odd 10 eigenvalue (corresponding to unitarityNLO14).
Definition: unitarity.h:1862
NLO part over total first Z2-even 00 eigenvalue (corresponding to unitarityNLOev1).
Definition: unitarity.h:1516
NLO part over total Z2-odd 11 eigenvalue (corresponding to unitarityNLO24).
Definition: unitarity.h:1883
NLO part over total second Z2-even 00 eigenvalue (corresponding to unitarityNLOev2).
Definition: unitarity.h:1537
NLO part over total first Z2-odd 00 eigenvalue (corresponding to unitarityNLOev3).
Definition: unitarity.h:1558
NLO part over total second Z2-odd 00 eigenvalue (corresponding to unitarityNLOev4).
Definition: unitarity.h:1579
NLO part over total first Z2-even 01 eigenvalue (corresponding to unitarityNLOev5).
Definition: unitarity.h:1600
NLO part over total second Z2-even 01 eigenvalue (corresponding to unitarityNLOev6).
Definition: unitarity.h:1621
NLO part over total first Z2-odd 01 eigenvalue (corresponding to unitarityNLOev9).
Definition: unitarity.h:1676
NLO over LO ratio for the second Z2-odd 01 eigenvalue (corresponding to unitarityNLOev10).
Definition: unitarity.h:1309
NLO over LO ratio for the first Z2-even 11 eigenvalue (corresponding to unitarityNLOev13).
Definition: unitarity.h:1364
NLO over LO ratio for the second Z2-even 11 eigenvalue (corresponding to unitarityNLOev14).
Definition: unitarity.h:1385
NLO over LO ratio for the Z2-odd 10 eigenvalue (corresponding to unitarityNLO14).
Definition: unitarity.h:1474
NLO over LO ratio for the first Z2-even 00 eigenvalue (corresponding to unitarityNLOev1).
Definition: unitarity.h:1128
NLO over LO ratio for the Z2-odd 11 eigenvalue (corresponding to unitarityNLO24).
Definition: unitarity.h:1495
NLO over LO ratio for the second Z2-even 00 eigenvalue (corresponding to unitarityNLOev2).
Definition: unitarity.h:1149
NLO over LO ratio for the first Z2-odd 00 eigenvalue (corresponding to unitarityNLOev3).
Definition: unitarity.h:1170
NLO over LO ratio for the second Z2-odd 00 eigenvalue (corresponding to unitarityNLOev3).
Definition: unitarity.h:1191
NLO over LO ratio for the first Z2-even 01 eigenvalue (corresponding to unitarityNLOev5).
Definition: unitarity.h:1212
NLO over LO ratio for the second Z2-even 01 eigenvalue (corresponding to unitarityNLOev6).
Definition: unitarity.h:1233
NLO over LO ratio for the first Z2-odd 01 eigenvalue (corresponding to unitarityNLOev9).
Definition: unitarity.h:1288
Imaginary part of .
Definition: unitarity.h:1967
Real part of .
Definition: unitarity.h:1946
Imaginary part of .
Definition: unitarity.h:1925
Real part of .
Definition: unitarity.h:1904
Imaginary part of .
Definition: unitarity.h:2051
Real part of .
Definition: unitarity.h:2030
Imaginary part of .
Definition: unitarity.h:2009
Real part of .
Definition: unitarity.h:1988
Imaginary part of .
Definition: unitarity.h:2135
Real part of .
Definition: unitarity.h:2114
Imaginary part of .
Definition: unitarity.h:2093
Real part of .
Definition: unitarity.h:2072
Imaginary part of .
Definition: unitarity.h:2219
Real part of .
Definition: unitarity.h:2198
Imaginary part of .
Definition: unitarity.h:2177
Real part of .
Definition: unitarity.h:2156
Imaginary part of .
Definition: unitarity.h:2261
Real part of .
Definition: unitarity.h:2240
Imaginary part of .
Definition: unitarity.h:2345
Real part of .
Definition: unitarity.h:2324
Imaginary part of .
Definition: unitarity.h:2303
Real part of .
Definition: unitarity.h:2282
Imaginary part of .
Definition: unitarity.h:2387
Real part of .
Definition: unitarity.h:2366
The vacuum expectation values of the bi-doublet.
Definition: GMquantities.h:188
An observable class for the bilinear basis parameter .
An observable class for the bilinear basis parameter .
An observable class for the bilinear basis parameter .
Coupling of the SM-Higgs to down quarks real part.
Coupling of H to down quarks real part.
Coupling of A to down quarks real part.
Coupling of the SM-Higgs to leptons real part.
Coupling of H to leptons real part.
Coupling of A to leptons real part.
Coupling of the SM-Higgs to up quarks real part.
Coupling of A to up quarks real part.
Namespace containing collider energy and angle constants used across ThObsFactory registration functi...