ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/AnalysisFramework/Plotting/various_studies.C
Revision: 1.23
Committed: Fri Sep 2 06:23:10 2011 UTC (13 years, 8 months ago) by buchmann
Content type: text/plain
Branch: MAIN
Changes since 1.22: +2 -7 lines
Log Message:
Temporarily reverting to cmscl95 while investigating crash in roostats

File Contents

# User Rev Content
1 buchmann 1.1 #include <iostream>
2     #include <vector>
3     #include <sys/stat.h>
4     #include "Modules/GeneralToolBox.C"
5     #include "Modules/SampleClass.C"
6 buchmann 1.21 #include "Modules/Setup.C"
7 buchmann 1.1 #include "Modules/PeakFinder.C"
8     #include "Modules/Poisson_Calculator.C"
9     #include "Modules/setTDRStyle.C"
10     #include "Modules/ActiveSamples.C"
11     #include "Modules/UpperLimitsWithShape.C"
12 buchmann 1.23 //#include "Modules/external/roostats_cl95.C"
13     #include "Modules/external/cl95cms.c"
14 buchmann 1.1 #include "Modules/Plotting_Functions.C" //also included for peak finding etc.
15 buchmann 1.20 #include "Modules/ResultModule.C"
16     #include "Modules/ExperimentalModule.C"
17 buchmann 1.1 #include "Modules/StudyModule.C" //also included for peak finding etc.
18 buchmann 1.8 #include "Modules/LimitCalculation.C"
19 buchmann 1.9 #include "Modules/Systematics.C"
20     #include "Modules/SUSYScan.C"
21 buchmann 1.1
22     #include <TCut.h>
23     #include <TROOT.h>
24     #include <TCanvas.h>
25     #include <TMath.h>
26     #include <TColor.h>
27     #include <TPaveText.h>
28     #include <TRandom.h>
29     #include <TH1.h>
30     #include <TH2.h>
31     #include <TF1.h>
32     #include <TSQLResult.h>
33    
34     #ifndef Verbosity
35     #define Verbosity 0
36     #endif
37     #ifndef HUSH
38     #define HUSH 1
39     #endif
40    
41     using namespace std;
42    
43     using namespace PlottingSetup;
44    
45     int main()
46     {
47     gROOT->SetStyle("Plain");
48 buchmann 1.18 bool do_fat_line=false; // if you want to have HistLineWidth=1 and FuncWidth=1 as it was before instead of 2
49     setTDRStyle(do_fat_line);
50 buchmann 1.1 gStyle->SetTextFont(42);
51     bool showList=false;
52     set_treename("events");//you can set the treename here to be used; options are "events" (for reco) for "PFevents" (for particle flow)
53 buchmann 1.9 define_samples(showList,allsamples,signalsamples,scansample);
54 buchmann 1.1 setlumi(luminosity);
55     do_png(true);
56 buchmann 1.22 do_pdf(false);
57 buchmann 1.15 do_eps(false);
58     do_C(false);
59 buchmann 1.21 set_directory(directoryname);//Indicate the directory name where you'd like to save the output files in Setup.C
60 buchmann 1.1 setessentialcut(essential);//this sets the essential cut; this one is used in the draw command so it is AUTOMATICALLY applied everywhere. IMPORTANT: Do NOT store weights here!
61     stringstream resultsummary;
62    
63     //what to do :
64     bool do_all=false;/// DONE
65 buchmann 1.20 bool do_peak_finding=true; /// DONE
66 buchmann 1.1 bool calculate_pred_and_observed=false; /// DONE
67 buchmann 1.5 bool study_sidebands=false; /// FOR REAL
68 buchmann 1.1 bool do_test=false;/// DONE (just any test you wish)
69     bool do_jzb_correction=false; //use this to find out the correction factor; originally this was done automatically but now you should do this separately and update Modules/Setup.C
70 buchmann 1.14 bool do_find_sideband_definition=false;
71 buchmann 1.9 bool do_pick_up_events=false; ///DONE
72 buchmann 1.8 bool do_ttbar_with_shapes=false;
73     bool do_upper_limits=false;
74 buchmann 1.14 bool do_run_check=false;
75 buchmann 1.19 bool do_kinematic_dist_of_pred_and_obs=false;//former do_plot_list
76 buchmann 1.14
77 buchmann 1.20 bool do_show_dibosons=false;
78 buchmann 1.1
79 buchmann 1.21 bool overlay_signal=false;
80    
81 buchmann 1.12 bool do_efficiency_scan_in_susy_space=false; /// NOW OUTSOURCED TO T3
82 buchmann 1.9 bool requireZ=true;
83 buchmann 1.12
84 buchmann 1.21 bool do_beautiful_ratio_plots=false;
85 buchmann 1.20
86 buchmann 1.1 //**** part 1 : peak finding
87     float MCPeak=0,MCPeakError=0,DataPeak=0,DataPeakError=0,MCSigma=10,DataSigma=10;
88     method=Kostasmethod;//Kostasmethod;//dogaus3sigma;// options: dogaus,doKM,dogaus2sigma,dogaus3sigma
89 buchmann 1.14 if(do_peak_finding||do_show_dibosons||calculate_pred_and_observed||do_all) find_peaks(MCPeak,MCPeakError, DataPeak, DataPeakError,MCSigma,DataSigma,resultsummary);
90 buchmann 1.1
91     stringstream datajzb;
92     if(DataPeak>0) datajzb<<"("<<jzbvariabledata<<"-"<<TMath::Abs(DataPeak)<<")";
93     else datajzb<<"("<<jzbvariabledata<<"+"<<TMath::Abs(DataPeak)<<")";
94     stringstream mcjzb;
95     if(MCPeak>0) mcjzb<<"("<<jzbvariablemc<<"-"<<TMath::Abs(MCPeak)<<")";
96     else mcjzb<<"("<<jzbvariablemc<<"+"<<TMath::Abs(MCPeak)<<")";
97    
98 buchmann 1.6 dout << "With peak correction, we get : " << endl;
99     dout << " Data : " << datajzb.str() << endl;
100 fronga 1.16 dout << " MC : " << mcjzb.str() << endl;
101 buchmann 1.1
102 buchmann 1.3 if(do_find_sideband_definition) find_sideband_definition();
103    
104     if(do_jzb_correction) {
105     find_correction_factors(jzbvariabledata,jzbvariablemc);
106 buchmann 1.6 dout << "Please update Modules/Setup.C to reflect the following values (round them first ... )" <<endl;
107     dout << "Corrected JZB variable definition " << endl << " Data: " << jzbvariabledata << " and MC: " << jzbvariablemc << endl;
108     dout << endl;
109     dout << "If you're feeling lazy, copy & paste this : " << endl;
110     dout << " string jzbvariabledata=\""<<jzbvariabledata<<"\";"<<endl;
111     dout << " string jzbvariablemc=\"" <<jzbvariablemc<<"\";"<<endl;
112 buchmann 1.3 }
113 buchmann 1.1
114     if(study_sidebands) look_at_sidebands(mcjzb.str(),datajzb.str());
115    
116 buchmann 1.8 vector<float>jzb_limit_bins;
117 buchmann 1.10 jzb_limit_bins.push_back(50);
118     //jzb_limit_bins.push_back(75);jzb_limit_bins.push_back(100);
119     //jzb_limit_bins.push_back(150);jzb_limit_bins.push_back(200);jzb_limit_bins.push_back(500);
120 buchmann 1.8
121    
122     if(do_ttbar_with_shapes) prepare_ttbar_limits(mcjzb.str(),datajzb.str(),DataPeakError,MCPeakError,jzb_limit_bins);
123    
124     if(do_upper_limits) calculate_upper_limits(mcjzb.str(),datajzb.str());
125    
126 buchmann 1.5 if(do_pick_up_events) {
127    
128 buchmann 1.6 dout << "Observed: " << endl;
129 buchmann 1.5 pick_up_events((const char*)(cutmass&&cutOSSF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)>100)"));
130 buchmann 1.6 dout << "Predicted (JZB<-100) OSSF" << endl;
131 buchmann 1.5 pick_up_events((const char*)(cutmass&&cutOSSF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)<-100)"));
132 buchmann 1.6 dout << "Predicted (emu, JZB>100) OSOF" << endl;
133 buchmann 1.5 pick_up_events((const char*)(cutmass&&cutOSOF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)>100)"));
134 buchmann 1.6 dout << "Predicted (emu, JZB<-100) OSOF" << endl;
135 buchmann 1.5 pick_up_events((const char*)(cutmass&&cutOSOF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)<-100)"));
136 buchmann 1.6 dout << "Predicted (SB emu, JZB>100) OSOF" << endl;
137 buchmann 1.5 pick_up_events((const char*)(sidebandcut&&cutOSOF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)>100)"));
138 buchmann 1.6 dout << "Predicted (SB emu, JZB<-100) OSOF" << endl;
139 buchmann 1.5 pick_up_events((const char*)(cutOSOF&&cutnJets&&basiccut&&sidebandcut&&"((jzb[1]+0.06*pt-2.84727)<-100)"));
140 buchmann 1.6 dout << "Predicted (SB SF, JZB>100) OSSF" << endl;
141 buchmann 1.5 pick_up_events((const char*)(sidebandcut&&cutOSSF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)>100)"));
142 buchmann 1.6 dout << "Predicted (SB SF, JZB<-100) OSSF" << endl;
143 buchmann 1.5 pick_up_events((const char*)(sidebandcut&&cutOSSF&&cutnJets&&basiccut&&"((jzb[1]+0.06*pt-2.84727)<-100)"));
144     }
145    
146 buchmann 1.14 if(do_run_check) run_check();
147     if(do_show_dibosons) show_dibosons(datajzb.str(),mcjzb.str());
148    
149 buchmann 1.17 if(do_kinematic_dist_of_pred_and_obs) kinematic_dist_of_pred_and_obs();
150 buchmann 1.15
151 buchmann 1.1 if(do_test) test();
152    
153 buchmann 1.20 vector<float> ratio_binning;
154     ratio_binning.push_back(0);
155     ratio_binning.push_back(5);
156     ratio_binning.push_back(10);
157     ratio_binning.push_back(20);
158     ratio_binning.push_back(50);
159     ratio_binning.push_back(100);
160     ratio_binning.push_back(200);
161     ratio_binning.push_back(350);
162 buchmann 1.22 //ratio_binning.push_back(500);
163 buchmann 1.20 if(do_beautiful_ratio_plots) Poisson_ratio_plots(mcjzb.str(),datajzb.str(),ratio_binning,MCPeakError,DataPeakError);
164    
165 buchmann 1.22 write_warning(__FUNCTION__,"Need to remove the next line:");
166     // do_new_prediction_plots(mcjzb.str(),datajzb.str(),DataSigma,MCSigma,overlay_signal);
167 buchmann 1.21
168 buchmann 1.22 // ttbar_sidebands_comparison(mcjzb.str());
169    
170     lm0_illustration();
171 buchmann 1.1 return 0;
172     }
173    
174