ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/AnalysisFramework/Plotting/Modules/LimitCalculation.C
(Generate patch)

Comparing UserCode/cbrown/AnalysisFramework/Plotting/Modules/LimitCalculation.C (file contents):
Revision 1.6 by buchmann, Fri Jul 22 10:15:34 2011 UTC vs.
Revision 1.30 by buchmann, Wed Nov 16 14:50:33 2011 UTC

# Line 1 | Line 1
1 + /****
2 +
3 + Off peak status (RestrictToMassPeak) :
4 +
5 + x  Necessary adaptations identified
6 + x  Started working on necessary adaptations
7 + x  Necessary adaptations implemented
8 + x  Necessary adaptations tested
9 +
10 + DONE!
11 +
12 +
13 + ****/
14   #include <iostream>
15   #include <vector>
16   #include <sys/stat.h>
# Line 15 | Line 28
28   #include <TF1.h>
29   #include <TSQLResult.h>
30   #include <TProfile.h>
31 + #include <TSystem.h>
32 + #include "LimitDroplet.C"
33  
34   //#include "TTbar_stuff.C"
35   using namespace std;
# Line 168 | Line 183 | ratio_binning.push_back(80);
183    
184   }
185  
186 < vector<float> compute_one_upper_limit(float mceff,float mcefferr, int ibin, string mcjzb, bool doobserved=false) {
187 <  float sigma95=0.0,sigma95A=0.0;
188 <  int nuisancemodel=1;
189 <  dout << "Now calling : CL95(" << luminosity << "," <<  lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << Nobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl;
190 <  sigma95 = CL95(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], Nobs[ibin], false, nuisancemodel);
191 <  if(doobserved) {
192 <    dout << "Now calling : CLA(" << luminosity << "," <<  lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << nuisancemodel<< ") " << endl;
193 <    sigma95A = CLA(luminosity, lumiuncert*luminosity, mceff, mcefferr, Npred[ibin], Nprederr[ibin], nuisancemodel);
194 <  }
186 > vector<float> compute_one_upper_limit(float mceff,float mcefferr, int ibin, string mcjzb, string plotfilename, bool doexpected, int flipped) {
187 >  float sigma95=-9.9,sigma95A=-9.9;
188 > /*
189 > USAGE OF ROOSTATS_CL95
190 > " Double_t             limit = roostats_cl95(ilum, slum, eff, seff, bck, sbck, n, gauss = false, nuisanceModel, method, plotFileName, seed); \n"
191 > " LimitResult expected_limit = roostats_clm(ilum, slum, eff, seff, bck, sbck, ntoys, nuisanceModel, method, seed); \n"
192 > " Double_t     average_limit = roostats_cla(ilum, slum, eff, seff, bck, sbck, nuisanceModel, method, seed); \n"
193 > "                                                                     \n"
194 > "
195 > " Double_t obs_limit = limit.GetObservedLimit();                      \n"
196 > " Double_t exp_limit = limit.GetExpectedLimit();                      \n"
197 > " Double_t exp_up    = limit.GetOneSigmaHighRange();                  \n"
198 > " Double_t exp_down  = limit.GetOneSigmaLowRange();                   \n"
199 > " Double_t exp_2up   = limit.GetTwoSigmaHighRange();                  \n"
200 > " Double_t exp_2down = limit.GetTwoSigmaLowRange();                   \n"
201 > */
202 >  if(mceff<=0) {
203 >    write_warning(__FUNCTION__,"Cannot compute upper limit in this configuration as the efficiency is negative:");
204 >    dout << "mc efficiency=" << mceff << " +/- " << mcefferr;
205 >    vector<float> sigmas;
206 >    sigmas.push_back(-1);
207 >    sigmas.push_back(-1);
208 >    return sigmas;
209 >  } else {
210 >    int nlimittoysused=1;
211 >    
212 >    ///------------------------------------------ < NEW > ----------------------------------------------------------
213 >    
214 >    int secondssince1970=time(NULL);
215 >    stringstream repname;
216 >    repname << PlottingSetup::cbafbasedir << "/exchange/report_" << secondssince1970 << "_"<<plotfilename<< "__"<< ".txt";
217 >    
218 >      /* - report filename [1]
219 >         - luminosity [2]
220 >         - lumi uncert [3]
221 >         - MC efficiency [4]
222 >         - MC efficiency error [5]
223 >         - Npred [6]
224 >         - Nprederr [7]
225 >         - Nobs [8]
226 >         - JZB cut [9]
227 >         - plot name  [10]*/
228 >
229 >  if(flipped==0) dout << "Calling limit capsule instead of calling : CL95(" << luminosity << "," <<  lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << Npred[ibin] << "," << Nprederr[ibin] << "," << Nobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl;
230 >  if(flipped>0) dout << "Calling limit capsule instead of calling : CL95(" << luminosity << "," <<  lumiuncert*luminosity << "," << mceff << "," << mcefferr << "," << flippedNpred[ibin] << "," << flippedNprederr[ibin] << "," << flippedNobs[ibin] << "," << false << "," << nuisancemodel<< ") " << endl;
231 >    
232 >    stringstream command;
233 >    if(flipped==0) command << PlottingSetup::cbafbasedir << "/DistributedModelCalculations/Limits/TimedLimitCapsule.exec " << repname.str() << " " << luminosity << " " << luminosity*lumiuncert << " " << mceff << " " << mcefferr << " " << Npred[ibin] << " " << Nprederr[ibin] << " " << Nobs[ibin] << " " << -1 << " " << PlottingSetup::basedirectory << "/" << plotfilename << " " << doexpected;
234 >    if(flipped>0) command << PlottingSetup::cbafbasedir << "/DistributedModelCalculations/Limits/TimedLimitCapsule.exec " << repname.str() << " " << luminosity << " " << luminosity*lumiuncert << " " << mceff << " " << mcefferr << " " << flippedNpred[ibin] << " " << flippedNprederr[ibin] << " " << flippedNobs[ibin] << " " << -1 << " " << PlottingSetup::basedirectory << "/" << plotfilename << " " << doexpected;
235 >    dout << command.str() << endl;
236 >    
237 >    int retval = 256;
238 >    int attempts=0;
239 >    while(!(retval==0||attempts>=3)) {//try up to 3 times
240 >        attempts++;
241 >        dout << "Starting limit calculation (TimedLimitCapsule) now : Attempt " << attempts << endl;
242 >        retval=gSystem->Exec(command.str().c_str());
243 >    }
244 >    char hostname[1023];
245 >    gethostname(hostname,1023);
246 >    if((!((Contains(hostname,"t3ui")||Contains(hostname,"t3wn"))))&&retval==256) {
247 >        //running via CRAB and encountered the same problem too often: place a problem file to mark this problem!
248 >        stringstream markproblem;
249 >        markproblem << "touch " << PlottingSetup::basedirectory << "/exchange/problemswhilesettinglimits.txt";
250 >        gSystem->Exec(markproblem.str().c_str());      
251 >    }
252 >    LimitDroplet limres;
253 >    limres.readDroplet(repname.str());
254 >    dout << limres << endl;
255 >    remove(repname.str().c_str());
256 >    sigma95=limres.observed;
257 >
258 >    
259 >    ///------------------------------------------ < /NEW > ----------------------------------------------------------
260    vector<float> sigmas;
261    sigmas.push_back(sigma95);
262 <  sigmas.push_back(sigma95A);
262 >  if(doexpected) {
263 >    sigmas.push_back(limres.expected);
264 >    sigmas.push_back(limres.upper68);
265 >    sigmas.push_back(limres.lower68);
266 >    sigmas.push_back(limres.upper95);
267 >    sigmas.push_back(limres.lower95);
268 >  }
269 >  
270    return sigmas;
271 +  
272 +
273 +  }//end of mc efficiency is ok
274   }
275  
276 < void compute_upper_limits_from_counting_experiment(vector<vector<float> > uncertainties,vector<float> jzbcuts, string mcjzb, bool doobserved) {
276 > void compute_upper_limits_from_counting_experiment(vector<vector<float> > uncertainties,vector<float> jzbcuts, string mcjzb, bool doexpected, int flipped) {
277    dout << "Doing counting experiment ... " << endl;
278    vector<vector<string> > limits;
279    vector<vector<float> > vlimits;
# Line 201 | Line 291 | void compute_upper_limits_from_counting_
291        float staterr=uncertainties[isample*jzbcuts.size()+ibin][2];
292        float systerr=uncertainties[isample*jzbcuts.size()+ibin][3];
293        float toterr =uncertainties[isample*jzbcuts.size()+ibin][4];
294 <      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;
294 >      float observed,observederr,null,result;
295        
296 + //      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);
297 + //      observed-=result;//this is the actual excess we see!
298 + //      float expected=observed/luminosity;
299 +      string plotfilename=(string)(TString(signalsamples.collection[isample].samplename)+TString("___JZB_geq_")+TString(any2string(JZBcutat))+TString(".png"));
300        dout << "Sample: " << signalsamples.collection[isample].samplename << ", JZB>"<<JZBcutat<< " : " << mceff << " +/- " << staterr << " (stat) +/- " << systerr << " (syst) --> toterr = " << toterr << endl;
301 <      vector<float> sigmas = compute_one_upper_limit(mceff,toterr,ibin,mcjzb,doobserved);
301 >      vector<float> sigmas = compute_one_upper_limit(mceff,toterr,ibin,mcjzb,plotfilename,doexpected,flipped);
302        
303 <      if(doobserved) {
304 <        rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(expected)+")");
303 >      if(doexpected) {
304 > //      rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(expected)+")");
305 >        rows.push_back(any2string(sigmas[0])+";"+any2string(sigmas[1])+";"+"("+any2string(signalsamples.collection[isample].xs)+")");
306          vrows.push_back(sigmas[0]);
307          vrows.push_back(sigmas[1]);
308 <        vrows.push_back(expected);
308 > //      vrows.push_back(expected);
309 >        vrows.push_back(signalsamples.collection[isample].xs);
310        }
311        else {
312 <        rows.push_back(any2string(sigmas[0])+"("+any2string(expected)+")");
312 > //      rows.push_back(any2string(sigmas[0])+"("+any2string(expected)+")");
313 >        rows.push_back(any2string(sigmas[0]));
314          vrows.push_back(sigmas[0]);
315 <        vrows.push_back(expected);
315 >        vrows.push_back(signalsamples.collection[isample].xs);
316 > //      vrows.push_back(expected);
317        }
318      }//end of bin loop
319      limits.push_back(rows);
320      vlimits.push_back(vrows);
321    }//end of sample loop
322 <  dout << endl << endl << "PAS table 3: " << endl << endl;
322 >  dout << endl << endl << endl << "_________________________________________________________________________________________________" << endl << endl;
323 >  dout << endl << endl << "PAS table 3:   (notation: limit [95%CL])" << endl << endl;
324    dout << "\t";
325    for (int irow=0;irow<jzbcuts.size();irow++) {
326      dout << jzbcuts[irow] << "\t";
# Line 232 | Line 328 | void compute_upper_limits_from_counting_
328    dout << endl;
329    for(int irow=0;irow<limits.size();irow++) {
330      for(int ientry=0;ientry<limits[irow].size();ientry++) {
331 <      dout << limits[irow][ientry] << "\t";
331 >      if (limits[irow][ientry]>0) dout << limits[irow][ientry] << "\t";
332 >      else dout << " (N/A) \t";
333      }
334      dout << endl;
335    }
336    
337 <  if(!doobserved) {
338 <    dout << endl << endl << "LIMITS: " << endl;
339 <    dout << "\t";
337 >  if(!doexpected) {
338 >    dout << endl << endl << "LIMITS: (Tex)" << endl;
339 >    tout << "\\begin{table}[hbtp]" << endl;
340 >    tout << "\\renewcommand{\\arraystretch}{1.3}" << endl;
341 >    tout << "\\begin{center}" << endl;
342 >    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;
343 >    tout << "" << endl;
344 >    tout << "\\begin{tabular}{ | l | ";
345 >    for (int irow=0;irow<jzbcuts.size();irow++) tout << " l |";
346 >    tout << "} " << endl << " \\hline " << endl << "& \t ";
347      for (int irow=0;irow<jzbcuts.size();irow++) {
348 <      dout << jzbcuts[irow] << "\t";
348 >      tout << "JZB $>$ " << jzbcuts[irow] << " GeV & \t ";
349      }
350 <    dout << endl;
350 >    tout << " \\\\ \\hline " << endl;
351      for(int irow=0;irow<limits.size();irow++) {
352 <      dout << limits[irow][0] << "\t";
352 >      tout << limits[irow][0] << " \t";
353        for(int ientry=0;ientry<jzbcuts.size();ientry++) {
354 <        dout << Round(vlimits[irow][2*ientry] / vlimits[irow][2*ientry+1],3)<< "\t";
354 >        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";
355 >        else tout << " & ( N / A ) \t";
356 > //      dout << Round(vlimits[irow][2*ientry],3) << " / " << Round(vlimits[irow][2*ientry+1],3)<< "\t";
357        }
358 <      dout << endl;
358 >      tout << " \\\\ \\hline " << endl;
359      }
360 +      tout << "\\end{tabular}" << endl;
361 +      tout << "      \\end{tabular}"<< endl;
362 +      tout << "\\end{center}"<< endl;
363 +      tout << "\\end{table} "<< endl;
364 +
365    }//do observed
366    
367    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;
368 <  dout << "Scenario \t Efficiency [%] \t Upper limits [pb] \t Prediction [pb]" << endl;
368 >  dout << "Scenario \t Efficiency [%] \t Upper limits [pb] \t \\sigma [pb]" << endl;
369    for(int icut=0;icut<jzbcuts.size();icut++) {
370 <    dout << "Region with JZB>" << jzbcuts[icut] << endl;
370 >    dout << "Region with JZB>" << jzbcuts[icut] << (ConsiderSignalContaminationForLimits?"  (accounting for signal contamination)":"  (not accounting for signal contamination)") << endl;
371      for(int isample=0;isample<signalsamples.collection.size();isample++) {
372 <      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;
372 >      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;
373      }
374      dout << endl;
375    }
265  
266  write_warning("compute_upper_limits_from_counting_experiment","Still need to update the script");
376   }
377  
378  
379  
380 < //********************************************************************** new : Limits using SHAPES ***********************************
380 > /********************************************************************** new : Limits using SHAPES ***********************************
381 >
382 >
383 >   SSSSSSSSSSSSSSS hhhhhhh                                                                                      
384 > SS:::::::::::::::Sh:::::h                                                                                      
385 > S:::::SSSSSS::::::Sh:::::h                                                                                      
386 > S:::::S     SSSSSSSh:::::h                                                                                      
387 > S:::::S             h::::h hhhhh         aaaaaaaaaaaaa  ppppp   ppppppppp       eeeeeeeeeeee        ssssssssss  
388 > S:::::S             h::::hh:::::hhh      a::::::::::::a p::::ppp:::::::::p    ee::::::::::::ee    ss::::::::::s  
389 > S::::SSSS          h::::::::::::::hh    aaaaaaaaa:::::ap:::::::::::::::::p  e::::::eeeee:::::eess:::::::::::::s
390 >  SS::::::SSSSS     h:::::::hhh::::::h            a::::app::::::ppppp::::::pe::::::e     e:::::es::::::ssss:::::s
391 >    SSS::::::::SS   h::::::h   h::::::h    aaaaaaa:::::a p:::::p     p:::::pe:::::::eeeee::::::e s:::::s  ssssss
392 >       SSSSSS::::S  h:::::h     h:::::h  aa::::::::::::a p:::::p     p:::::pe:::::::::::::::::e    s::::::s      
393 >            S:::::S h:::::h     h:::::h a::::aaaa::::::a p:::::p     p:::::pe::::::eeeeeeeeeee        s::::::s  
394 >            S:::::S h:::::h     h:::::ha::::a    a:::::a p:::::p    p::::::pe:::::::e           ssssss   s:::::s
395 > SSSSSSS     S:::::S h:::::h     h:::::ha::::a    a:::::a p:::::ppppp:::::::pe::::::::e          s:::::ssss::::::s
396 > S::::::SSSSSS:::::S h:::::h     h:::::ha:::::aaaa::::::a p::::::::::::::::p  e::::::::eeeeeeee  s::::::::::::::s
397 > S:::::::::::::::SS  h:::::h     h:::::h a::::::::::aa:::ap::::::::::::::pp    ee:::::::::::::e   s:::::::::::ss  
398 > SSSSSSSSSSSSSSS    hhhhhhh     hhhhhhh  aaaaaaaaaa  aaaap::::::pppppppp        eeeeeeeeeeeeee    sssssssssss    
399 >                                                         p:::::p                                                
400 >                                                         p:::::p                                                
401 >                                                        p:::::::p                                                
402 >                                                        p:::::::p                                                
403 >                                                        p:::::::p                                                
404 >                                                        ppppppppp                                                
405 >                                                                                                                
406 >
407 > *********************************************************************** new : Limits using SHAPES ***********************************/
408 >
409  
410   void limit_shapes_for_systematic_effect(TFile *limfile, string identifier, string mcjzb, string datajzb, int JES,vector<float> binning, TCanvas *limcan) {
411    dout << "Creatig shape templates ... ";
# Line 288 | Line 425 | void limit_shapes_for_systematic_effect(
425    TH1F *ZOSSFN = allsamples.Draw("ZOSSFN","-"+datajzb,binning, "JZB4limits", "events",cutmass&&cutOSSF&&limitnJetcut&&basiccut,dataormc,luminosity);
426    TH1F *ZOSOFN = allsamples.Draw("ZOSOFN","-"+datajzb,binning, "JZB4limits", "events",cutmass&&cutOSOF&&limitnJetcut&&basiccut,dataormc,luminosity);
427    
428 <  TH1F *SBOSSFP = allsamples.Draw("SBOSSFP",datajzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
429 <  TH1F *SBOSOFP = allsamples.Draw("SBOSOFP",datajzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
430 <  TH1F *SBOSSFN = allsamples.Draw("SBOSSFN","-"+datajzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
431 <  TH1F *SBOSOFN = allsamples.Draw("SBOSOFN","-"+datajzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
428 >  TH1F *SBOSSFP;
429 >  TH1F *SBOSOFP;
430 >  TH1F *SBOSSFN;
431 >  TH1F *SBOSOFN;
432    
433    TH1F *LZOSSFP = allsamples.Draw("LZOSSFP",mcjzb,binning, "JZB4limits", "events",cutmass&&cutOSSF&&limitnJetcut&&basiccut,mc,luminosity,allsamples.FindSample("LM4"));
434    TH1F *LZOSOFP = allsamples.Draw("LZOSOFP",mcjzb,binning, "JZB4limits", "events",cutmass&&cutOSOF&&limitnJetcut&&basiccut,mc,luminosity,allsamples.FindSample("LM4"));
435    TH1F *LZOSSFN = allsamples.Draw("LZOSSFN","-"+mcjzb,binning, "JZB4limits", "events",cutmass&&cutOSSF&&limitnJetcut&&basiccut,mc,luminosity,allsamples.FindSample("LM4"));
436    TH1F *LZOSOFN = allsamples.Draw("LZOSOFN","-"+mcjzb,binning, "JZB4limits", "events",cutmass&&cutOSOF&&limitnJetcut&&basiccut,mc,luminosity,allsamples.FindSample("LM4"));
437    
438 <  TH1F *LSBOSSFP = allsamples.Draw("LSBOSSFP",mcjzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
439 <  TH1F *LSBOSOFP = allsamples.Draw("LSBOSOFP",mcjzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
440 <  TH1F *LSBOSSFN = allsamples.Draw("LSBOSSFN","-"+mcjzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
441 <  TH1F *LSBOSOFN = allsamples.Draw("LSBOSOFN","-"+mcjzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
438 >  TH1F *LSBOSSFP;
439 >  TH1F *LSBOSOFP;
440 >  TH1F *LSBOSSFN;
441 >  TH1F *LSBOSOFN;
442 >  
443 >  flag_this_change(__FUNCTION__,__LINE__,false);//PlottingSetup::RestrictToMassPeak
444 >  if(PlottingSetup::RestrictToMassPeak) {
445 >      SBOSSFP = allsamples.Draw("SBOSSFP",datajzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
446 >      SBOSOFP = allsamples.Draw("SBOSOFP",datajzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
447 >      SBOSSFN = allsamples.Draw("SBOSSFN","-"+datajzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
448 >      SBOSOFN = allsamples.Draw("SBOSOFN","-"+datajzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,dataormc,luminosity);
449 >      
450 >      LSBOSSFP = allsamples.Draw("LSBOSSFP",mcjzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
451 >      LSBOSOFP = allsamples.Draw("LSBOSOFP",mcjzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
452 >      LSBOSSFN = allsamples.Draw("LSBOSSFN","-"+mcjzb,binning, "JZB4limits", "events",cutOSSF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
453 >      LSBOSOFN = allsamples.Draw("LSBOSOFN","-"+mcjzb,binning, "JZB4limits", "events",cutOSOF&&limitnJetcut&&basiccut&&sidebandcut,mc,luminosity,allsamples.FindSample("LM4"));
454 >  }
455    
456    string obsname="data_obs";
457    string predname="background";
# Line 312 | Line 462 | void limit_shapes_for_systematic_effect(
462      signalname="signal_"+identifier;
463    }
464    
465 <  TH1F *obs = (TH1F*)ZOSSFP->Clone();
465 >  TH1F *obs = (TH1F*)ZOSSFP->Clone("observation");
466    obs->SetName(obsname.c_str());
467    obs->Write();
468 <  TH1F *pred = (TH1F*)ZOSSFN->Clone();
469 <  pred->Add(ZOSOFP,1.0/3);
470 <  pred->Add(ZOSOFN,-1.0/3);
471 <  pred->Add(SBOSSFP,1.0/3);
472 <  pred->Add(SBOSSFN,-1.0/3);
473 <  pred->Add(SBOSOFP,1.0/3);
474 <  pred->Add(SBOSOFN,-1.0/3);
468 >  TH1F *pred = (TH1F*)ZOSSFN->Clone("prediction");
469 >    flag_this_change(__FUNCTION__,__LINE__,false);//PlottingSetup::RestrictToMassPeak
470 >  if(PlottingSetup::RestrictToMassPeak) {
471 >    pred->Add(ZOSOFP,1.0/3);
472 >    pred->Add(ZOSOFN,-1.0/3);
473 >    pred->Add(SBOSSFP,1.0/3);
474 >    pred->Add(SBOSSFN,-1.0/3);
475 >    pred->Add(SBOSOFP,1.0/3);
476 >    pred->Add(SBOSOFN,-1.0/3);
477 >  } else {
478 >    pred->Add(ZOSOFP,1.0);
479 >    pred->Add(ZOSOFN,-1.0);
480 >  }
481 >    
482    pred->SetName(predname.c_str());
483    pred->Write();
484    
# Line 332 | Line 489 | void limit_shapes_for_systematic_effect(
489    TH1F *Lpred = new TH1F("Lpred","Lpred",binning.size()-1,&binning[0]);
490    Lobs->Add(LZOSSFP);
491    Lpred->Add(LZOSSFN);
492 <  Lpred->Add(LZOSOFP,1.0/3);
493 <  Lpred->Add(LZOSOFN,-1.0/3);
494 <  Lpred->Add(LSBOSSFP,1.0/3);
495 <  Lpred->Add(LSBOSSFN,-1.0/3);
496 <  Lpred->Add(LSBOSOFP,1.0/3);
497 <  Lpred->Add(LSBOSOFN,-1.0/3);
492 >    flag_this_change(__FUNCTION__,__LINE__,false);//PlottingSetup::RestrictToMassPeak
493 >  if(PlottingSetup::RestrictToMassPeak) {
494 >    Lpred->Add(LZOSOFP,1.0/3);
495 >    Lpred->Add(LZOSOFN,-1.0/3);
496 >    Lpred->Add(LSBOSSFP,1.0/3);
497 >    Lpred->Add(LSBOSSFN,-1.0/3);
498 >    Lpred->Add(LSBOSOFP,1.0/3);
499 >    Lpred->Add(LSBOSOFN,-1.0/3);
500 >  } else {
501 >    Lpred->Add(LZOSOFP,1.0);
502 >    Lpred->Add(LZOSOFN,-1.0);
503 >  }
504 >
505    TH1F *signal = (TH1F*)Lobs->Clone();
506    signal->Add(Lpred,-1);
507    signal->SetName(signalname.c_str());
# Line 351 | Line 515 | void limit_shapes_for_systematic_effect(
515    delete ZOSSFN;
516    delete ZOSOFN;
517    
518 <  delete SBOSSFP;
519 <  delete SBOSOFP;
520 <  delete SBOSSFN;
521 <  delete SBOSOFN;
518 >  if(PlottingSetup::RestrictToMassPeak) {
519 >    delete SBOSSFP;
520 >    delete SBOSOFP;
521 >    delete SBOSSFN;
522 >    delete SBOSOFN;
523 >  }
524    
525    delete LZOSSFP;
526    delete LZOSOFP;
527    delete LZOSSFN;
528    delete LZOSOFN;
529    
530 <  delete LSBOSSFP;
531 <  delete LSBOSOFP;
532 <  delete LSBOSSFN;
533 <  delete LSBOSOFN;
530 >  if(PlottingSetup::RestrictToMassPeak) {
531 >    delete LSBOSSFP;
532 >    delete LSBOSOFP;
533 >    delete LSBOSSFN;
534 >    delete LSBOSOFN;
535 >  }
536  
537   }
538  
# Line 414 | Line 582 | void prepare_limits(string mcjzb, string
582    limfile->Close();
583    write_info("prepare_limits","limitfile.root and datacard.txt have been generated. You can now use them to calculate limits!");
584    
585 < }
585 > }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines