15 |
|
#include <TF1.h> |
16 |
|
#include <TSQLResult.h> |
17 |
|
#include <TProfile.h> |
18 |
+ |
#include <TSystem.h> |
19 |
+ |
#include "LimitDroplet.C" |
20 |
|
|
21 |
|
//#include "TTbar_stuff.C" |
22 |
|
using namespace std; |
170 |
|
|
171 |
|
} |
172 |
|
|
173 |
< |
vector<float> compute_one_upper_limit(float mceff,float mcefferr, int ibin, string mcjzb, bool doobserved=false) { |
174 |
< |
float sigma95=0.0,sigma95A=0.0; |
175 |
< |
int nuisancemodel=1; |
176 |
< |
dout << "Now calling : CL95(" << luminosity << "," << lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << Nobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl; |
177 |
< |
sigma95 = CL95(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], Nobs[ibin], false, nuisancemodel); |
173 |
> |
vector<float> compute_one_upper_limit(float mceff,float mcefferr, int ibin, string mcjzb, string plotfilename, bool doobserved) { |
174 |
> |
float sigma95=-9.9,sigma95A=-9.9; |
175 |
> |
/* |
176 |
> |
USAGE OF ROOSTATS_CL95 |
177 |
> |
" Double_t limit = roostats_cl95(ilum, slum, eff, seff, bck, sbck, n, gauss = false, nuisanceModel, method, plotFileName, seed); \n" |
178 |
> |
" LimitResult expected_limit = roostats_clm(ilum, slum, eff, seff, bck, sbck, ntoys, nuisanceModel, method, seed); \n" |
179 |
> |
" Double_t average_limit = roostats_cla(ilum, slum, eff, seff, bck, sbck, nuisanceModel, method, seed); \n" |
180 |
> |
" \n" |
181 |
> |
" |
182 |
> |
" Double_t obs_limit = limit.GetObservedLimit(); \n" |
183 |
> |
" Double_t exp_limit = limit.GetExpectedLimit(); \n" |
184 |
> |
" Double_t exp_up = limit.GetOneSigmaHighRange(); \n" |
185 |
> |
" Double_t exp_down = limit.GetOneSigmaLowRange(); \n" |
186 |
> |
" Double_t exp_2up = limit.GetTwoSigmaHighRange(); \n" |
187 |
> |
" Double_t exp_2down = limit.GetTwoSigmaLowRange(); \n" |
188 |
> |
*/ |
189 |
> |
if(mceff<=0) { |
190 |
> |
write_warning(__FUNCTION__,"Cannot compute upper limit in this configuration as the efficiency is negative:"); |
191 |
> |
dout << "mc efficiency=" << mceff << " +/- " << mcefferr; |
192 |
> |
vector<float> sigmas; |
193 |
> |
sigmas.push_back(-1); |
194 |
> |
sigmas.push_back(-1); |
195 |
> |
return sigmas; |
196 |
> |
} else { |
197 |
> |
int nlimittoysused=1; |
198 |
> |
|
199 |
> |
///------------------------------------------ < NEW > ---------------------------------------------------------- |
200 |
> |
|
201 |
> |
int secondssince1970=time(NULL); |
202 |
> |
stringstream repname; |
203 |
> |
repname << PlottingSetup::cbafbasedir << "/exchange/report_" << secondssince1970 << "_"<<plotfilename<< "__"<< ".txt"; |
204 |
> |
|
205 |
> |
/* - report filename [1] |
206 |
> |
- luminosity [2] |
207 |
> |
- lumi uncert [3] |
208 |
> |
- MC efficiency [4] |
209 |
> |
- MC efficiency error [5] |
210 |
> |
- Npred [6] |
211 |
> |
- Nprederr [7] |
212 |
> |
- Nobs [8] |
213 |
> |
- JZB cut [9] |
214 |
> |
- plot name [10]*/ |
215 |
> |
|
216 |
> |
cout << "Calling limit capsule instead of calling : CL95(" << luminosity << "," << lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << Nobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl; |
217 |
> |
|
218 |
> |
stringstream command; |
219 |
> |
command << PlottingSetup::cbafbasedir << "/DistributedModelCalculations/Limits/LimitCapsule.exec " << repname.str() << " " << luminosity << " " << luminosity*lumiuncert << " " << mceff << " " << mcefferr << " " << Npred[ibin] << " " << Nprederr[ibin] << " " << Nobs[ibin] << " " << -1 << " " << plotfilename; |
220 |
> |
std::cout << command.str() << std::endl; |
221 |
> |
|
222 |
> |
int retval = 256; |
223 |
> |
int attempts=0; |
224 |
> |
while(!(retval==0||attempts>=5)) {//try up to 5 times |
225 |
> |
attempts++; |
226 |
> |
cout << "Starting limit calculation (LimitCapsule) now : Attempt " << attempts << endl; |
227 |
> |
retval=gSystem->Exec(command.str().c_str()); |
228 |
> |
} |
229 |
> |
|
230 |
> |
LimitDroplet limres; |
231 |
> |
limres.readDroplet(repname.str()); |
232 |
> |
cout << limres << endl; |
233 |
> |
remove(repname.str().c_str()); |
234 |
> |
sigma95=limres.expected; |
235 |
> |
|
236 |
> |
|
237 |
> |
///------------------------------------------ < /NEW > ---------------------------------------------------------- |
238 |
> |
//if(doobserved) nlimittoysused=nlimittoys; |
239 |
> |
// nlimittoysused=nlimittoys; |
240 |
> |
// dout << "Now calling : CL95(" << luminosity << "," << lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << Nobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl; |
241 |
> |
// sigma95 = CL95(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], Nobs[ibin], false, nuisancemodel); |
242 |
> |
// sigma95 = CL95(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], Nobs[ibin], false, nuisancemodel); |
243 |
> |
|
244 |
> |
/* dout << "Now calling : roostats_cl95(" << luminosity << "," << lumiuncert*luminosity << ","<<mceff <<","<<mcefferr<<","<<Npred[ibin]<<","<<Nprederr[ibin] << ",n=" << nlimittoysused << ",gauss=" << false << ",nuisanceModel="<<nuisancemodel<<",method="<<limitmethod<<",plotfilename="<<plotfilename<<",seed=0) " << endl; |
245 |
> |
/* dout << "Now calling : roostats_limit(" << luminosity << "," << lumiuncert*luminosity << ","<<mceff <<","<<mcefferr<<","<<Npred[ibin]<<","<<Nprederr[ibin] << ",n=" << nlimittoysused << ",gauss=" << false << ", nuisanceModel="<<nuisancemodel<<",method="<<limitmethod<<",plotfilename="<<plotfilename<<",seed=1) " << endl; |
246 |
> |
LimitResult limit = roostats_limit(luminosity,lumiuncert*luminosity,mceff,mcefferr,Npred[ibin],Nprederr[ibin],nlimittoysused,false,nuisancemodel,limitmethod,plotfilename,0); |
247 |
> |
dout << "Now interpreting and saving results ... " << endl; |
248 |
> |
vector<float> sigmas; |
249 |
> |
sigmas.push_back(limit.GetExpectedLimit());//expected |
250 |
> |
sigmas.push_back(limit.GetObservedLimit());//observed |
251 |
> |
//up to here for backward compatibility |
252 |
> |
sigmas.push_back(limit.GetOneSigmaHighRange());//expected, up |
253 |
> |
sigmas.push_back(limit.GetTwoSigmaHighRange());//expected, 2 up |
254 |
> |
sigmas.push_back(limit.GetOneSigmaLowRange());//expected, down |
255 |
> |
sigmas.push_back(limit.GetTwoSigmaLowRange());//expected, 2 down |
256 |
> |
*/ |
257 |
> |
// float limit = roostats_cl95(luminosity,lumiuncert*luminosity,mceff,mcefferr,Npred[ibin],Nprederr[ibin],nlimittoysused,false,nuisancemodel,limitmethod,plotfilename,0); |
258 |
|
if(doobserved) { |
259 |
< |
dout << "Now calling : CLA(" << luminosity << "," << lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << nuisancemodel<< ") " << endl; |
260 |
< |
sigma95A = CLA(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], nuisancemodel); |
259 |
> |
write_warning(__FUNCTION__,"OBSERVED LIMITS HAVE BEEN SWITCHED OFF TEMPORARILY"); |
260 |
> |
// dout << "Now calling : CLA(" << luminosity << "," << lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << nuisancemodel<< ") " << endl; |
261 |
> |
// sigma95A = CLA(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], nuisancemodel); |
262 |
|
} |
263 |
+ |
// vector<float> sigmas; |
264 |
+ |
// sigmas.push_back(limit); |
265 |
|
vector<float> sigmas; |
266 |
|
sigmas.push_back(sigma95); |
267 |
|
sigmas.push_back(sigma95A); |
268 |
|
return sigmas; |
269 |
+ |
|
270 |
+ |
|
271 |
+ |
} |
272 |
+ |
write_warning(__FUNCTION__,"STILL MISSING SIGMAS, LIMITS, EVERYTHING ..."); |
273 |
|
} |
274 |
|
|
275 |
|
void compute_upper_limits_from_counting_experiment(vector<vector<float> > uncertainties,vector<float> jzbcuts, string mcjzb, bool doobserved) { |
290 |
|
float staterr=uncertainties[isample*jzbcuts.size()+ibin][2]; |
291 |
|
float systerr=uncertainties[isample*jzbcuts.size()+ibin][3]; |
292 |
|
float toterr =uncertainties[isample*jzbcuts.size()+ibin][4]; |
293 |
< |
float observed,null,result; |
205 |
< |
fill_result_histos(observed, null,null,null,null,null,null,null,mcjzb,JZBcutat,(int)5,result,(signalsamples.FindSample(signalsamples.collection[isample].filename)),signalsamples); |
206 |
< |
observed-=result;//this is the actual excess we see! |
207 |
< |
float expected=observed/luminosity; |
293 |
> |
float observed,observederr,null,result; |
294 |
|
|
295 |
+ |
// fill_result_histos(observed,observederr, null,null,null,null,null,null,null,mcjzb,JZBcutat,14000,(int)5,result,(signalsamples.FindSample(signalsamples.collection[isample].filename)),signalsamples); |
296 |
+ |
// observed-=result;//this is the actual excess we see! |
297 |
+ |
// float expected=observed/luminosity; |
298 |
+ |
string plotfilename=(string)(TString(signalsamples.collection[isample].samplename)+TString("___JZB_geq_")+TString(any2string(JZBcutat))+TString(".png")); |
299 |
|
dout << "Sample: " << signalsamples.collection[isample].samplename << ", JZB>"<<JZBcutat<< " : " << mceff << " +/- " << staterr << " (stat) +/- " << systerr << " (syst) --> toterr = " << toterr << endl; |
300 |
< |
vector<float> sigmas = compute_one_upper_limit(mceff,toterr,ibin,mcjzb,doobserved); |
300 |
> |
vector<float> sigmas = compute_one_upper_limit(mceff,toterr,ibin,mcjzb,plotfilename,doobserved); |
301 |
|
|
302 |
|
if(doobserved) { |
303 |
< |
rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(expected)+")"); |
303 |
> |
// rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(expected)+")"); |
304 |
> |
rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(signalsamples.collection[isample].xs)+")"); |
305 |
|
vrows.push_back(sigmas[0]); |
306 |
|
vrows.push_back(sigmas[1]); |
307 |
< |
vrows.push_back(expected); |
307 |
> |
// vrows.push_back(expected); |
308 |
> |
vrows.push_back(signalsamples.collection[isample].xs); |
309 |
|
} |
310 |
|
else { |
311 |
< |
rows.push_back(any2string(sigmas[0])+"("+any2string(expected)+")"); |
311 |
> |
// rows.push_back(any2string(sigmas[0])+"("+any2string(expected)+")"); |
312 |
> |
rows.push_back(any2string(sigmas[0])); |
313 |
|
vrows.push_back(sigmas[0]); |
314 |
< |
vrows.push_back(expected); |
314 |
> |
vrows.push_back(signalsamples.collection[isample].xs); |
315 |
> |
// vrows.push_back(expected); |
316 |
|
} |
317 |
|
}//end of bin loop |
318 |
|
limits.push_back(rows); |
319 |
|
vlimits.push_back(vrows); |
320 |
|
}//end of sample loop |
321 |
< |
dout << endl << endl << "PAS table 3: " << endl << endl; |
321 |
> |
dout << endl << endl << endl << "_________________________________________________________________________________________________" << endl << endl; |
322 |
> |
dout << endl << endl << "PAS table 3: (notation: limit [95%CL])" << endl << endl; |
323 |
|
dout << "\t"; |
324 |
|
for (int irow=0;irow<jzbcuts.size();irow++) { |
325 |
|
dout << jzbcuts[irow] << "\t"; |
327 |
|
dout << endl; |
328 |
|
for(int irow=0;irow<limits.size();irow++) { |
329 |
|
for(int ientry=0;ientry<limits[irow].size();ientry++) { |
330 |
< |
dout << limits[irow][ientry] << "\t"; |
330 |
> |
if (limits[irow][ientry]>0) dout << limits[irow][ientry] << "\t"; |
331 |
> |
else dout << " (N/A) \t"; |
332 |
|
} |
333 |
|
dout << endl; |
334 |
|
} |
335 |
|
|
336 |
|
if(!doobserved) { |
337 |
< |
dout << endl << endl << "LIMITS: " << endl; |
338 |
< |
dout << "\t"; |
337 |
> |
dout << endl << endl << "LIMITS: (Tex)" << endl; |
338 |
> |
tout << "\\begin{table}[hbtp]" << endl; |
339 |
> |
tout << "\\renewcommand{\arraystretch}{1.3}" << endl; |
340 |
> |
tout << "\\begin{center}" << endl; |
341 |
> |
tout << "\\caption{Observed upper limits on the cross section of different LM benchmark points " << (ConsiderSignalContaminationForLimits?" (accounting for signal contamination)":" (not accounting for signal contamination)") << "}\\label{tab:lmresults}" << endl; |
342 |
> |
tout << "" << endl; |
343 |
> |
tout << "\\begin{tabular}{ | l | "; |
344 |
> |
for (int irow=0;irow<jzbcuts.size();irow++) tout << " l |"; |
345 |
> |
tout << "} " << endl << " \\hline " << endl << "& \t "; |
346 |
|
for (int irow=0;irow<jzbcuts.size();irow++) { |
347 |
< |
dout << jzbcuts[irow] << "\t"; |
347 |
> |
tout << "JZB $>$ " << jzbcuts[irow] << " GeV & \t "; |
348 |
|
} |
349 |
< |
dout << endl; |
349 |
> |
tout << " \\\\ \\hline " << endl; |
350 |
|
for(int irow=0;irow<limits.size();irow++) { |
351 |
< |
dout << limits[irow][0] << "\t"; |
351 |
> |
tout << limits[irow][0] << " \t"; |
352 |
|
for(int ientry=0;ientry<jzbcuts.size();ientry++) { |
353 |
< |
dout << Round(vlimits[irow][2*ientry] / vlimits[irow][2*ientry+1],3)<< "\t"; |
353 |
> |
if(vlimits[irow][2*ientry]>0) tout << " & " << Round(vlimits[irow][2*ientry],2) << " \t (" << Round(vlimits[irow][2*ientry] / vlimits[irow][2*ientry+1],3)<< "x \\sigma ) \t"; |
354 |
> |
else tout << " & ( N / A ) \t"; |
355 |
> |
// dout << Round(vlimits[irow][2*ientry],3) << " / " << Round(vlimits[irow][2*ientry+1],3)<< "\t"; |
356 |
|
} |
357 |
< |
dout << endl; |
357 |
> |
tout << " \\\\ \\hline " << endl; |
358 |
|
} |
359 |
+ |
tout << "\\end{tabular}" << endl; |
360 |
+ |
tout << " \\end{tabular}"<< endl; |
361 |
+ |
tout << "\\end{center}"<< endl; |
362 |
+ |
tout << "\\end{table} "<< endl; |
363 |
+ |
|
364 |
|
}//do observed |
365 |
|
|
366 |
|
dout << endl << endl << "Final selection efficiencies with total statistical and systematic errors, and corresponding observed and expected upper limits (UL) on ($\\sigma\\times$ BR $\\times$ acceptance) for the LM4 and LM8 scenarios, in the different regions. The last column contains the predicted ($\\sigma \\times $BR$\\times$ acceptance) at NLO obtained from Monte Carlo simulation." << endl; |
367 |
< |
dout << "Scenario \t Efficiency [%] \t Upper limits [pb] \t Prediction [pb]" << endl; |
367 |
> |
dout << "Scenario \t Efficiency [%] \t Upper limits [pb] \t \\sigma [pb]" << endl; |
368 |
|
for(int icut=0;icut<jzbcuts.size();icut++) { |
369 |
< |
dout << "Region with JZB>" << jzbcuts[icut] << endl; |
369 |
> |
dout << "Region with JZB>" << jzbcuts[icut] << (ConsiderSignalContaminationForLimits?" (accounting for signal contamination)":" (not accounting for signal contamination)") << endl; |
370 |
|
for(int isample=0;isample<signalsamples.collection.size();isample++) { |
371 |
< |
dout << limits[icut][0] << "\t" << Round(100*uncertainties[isample*jzbcuts.size()+icut][1],1) << "+/-" << Round(100*uncertainties[isample*jzbcuts.size()+icut][2],1) << " (stat) +/- " << Round(100*uncertainties[isample*jzbcuts.size()+icut][3],1) << " (syst) \t" << Round((vlimits[isample][2*icut]),3) << "\t" << Round(vlimits[isample][2*icut+1],3) << endl; |
371 |
> |
dout << limits[isample][0] << "\t" << Round(100*uncertainties[isample*jzbcuts.size()+icut][1],3) << "+/-" << Round(100*uncertainties[isample*jzbcuts.size()+icut][2],3) << " (stat) +/- " << Round(100*uncertainties[isample*jzbcuts.size()+icut][3],3) << " (syst) \t" << Round((vlimits[isample][2*icut]),3) << "\t" << Round(vlimits[isample][2*icut+1],3) << endl; |
372 |
|
} |
373 |
|
dout << endl; |
374 |
|
} |
375 |
|
|
376 |
< |
write_warning("compute_upper_limits_from_counting_experiment","Still need to update the script"); |
376 |
> |
write_warning(__FUNCTION__,"Still need to update the script"); |
377 |
|
} |
378 |
|
|
379 |
|
|
380 |
|
|
381 |
< |
//********************************************************************** new : Limits using SHAPES *********************************** |
381 |
> |
/********************************************************************** new : Limits using SHAPES *********************************** |
382 |
> |
|
383 |
> |
|
384 |
> |
SSSSSSSSSSSSSSS hhhhhhh |
385 |
> |
SS:::::::::::::::Sh:::::h |
386 |
> |
S:::::SSSSSS::::::Sh:::::h |
387 |
> |
S:::::S SSSSSSSh:::::h |
388 |
> |
S:::::S h::::h hhhhh aaaaaaaaaaaaa ppppp ppppppppp eeeeeeeeeeee ssssssssss |
389 |
> |
S:::::S h::::hh:::::hhh a::::::::::::a p::::ppp:::::::::p ee::::::::::::ee ss::::::::::s |
390 |
> |
S::::SSSS h::::::::::::::hh aaaaaaaaa:::::ap:::::::::::::::::p e::::::eeeee:::::eess:::::::::::::s |
391 |
> |
SS::::::SSSSS h:::::::hhh::::::h a::::app::::::ppppp::::::pe::::::e e:::::es::::::ssss:::::s |
392 |
> |
SSS::::::::SS h::::::h h::::::h aaaaaaa:::::a p:::::p p:::::pe:::::::eeeee::::::e s:::::s ssssss |
393 |
> |
SSSSSS::::S h:::::h h:::::h aa::::::::::::a p:::::p p:::::pe:::::::::::::::::e s::::::s |
394 |
> |
S:::::S h:::::h h:::::h a::::aaaa::::::a p:::::p p:::::pe::::::eeeeeeeeeee s::::::s |
395 |
> |
S:::::S h:::::h h:::::ha::::a a:::::a p:::::p p::::::pe:::::::e ssssss s:::::s |
396 |
> |
SSSSSSS S:::::S h:::::h h:::::ha::::a a:::::a p:::::ppppp:::::::pe::::::::e s:::::ssss::::::s |
397 |
> |
S::::::SSSSSS:::::S h:::::h h:::::ha:::::aaaa::::::a p::::::::::::::::p e::::::::eeeeeeee s::::::::::::::s |
398 |
> |
S:::::::::::::::SS h:::::h h:::::h a::::::::::aa:::ap::::::::::::::pp ee:::::::::::::e s:::::::::::ss |
399 |
> |
SSSSSSSSSSSSSSS hhhhhhh hhhhhhh aaaaaaaaaa aaaap::::::pppppppp eeeeeeeeeeeeee sssssssssss |
400 |
> |
p:::::p |
401 |
> |
p:::::p |
402 |
> |
p:::::::p |
403 |
> |
p:::::::p |
404 |
> |
p:::::::p |
405 |
> |
ppppppppp |
406 |
> |
|
407 |
> |
|
408 |
> |
*********************************************************************** new : Limits using SHAPES ***********************************/ |
409 |
> |
|
410 |
|
|
411 |
|
void limit_shapes_for_systematic_effect(TFile *limfile, string identifier, string mcjzb, string datajzb, int JES,vector<float> binning, TCanvas *limcan) { |
412 |
|
dout << "Creatig shape templates ... "; |
552 |
|
limfile->Close(); |
553 |
|
write_info("prepare_limits","limitfile.root and datacard.txt have been generated. You can now use them to calculate limits!"); |
554 |
|
|
555 |
< |
} |
555 |
> |
} |