12 |
|
#include "../../Plotting/Modules/Plotting_Functions.C" |
13 |
|
#include "../../Plotting/Modules/LimitCalculation.C" |
14 |
|
#include "../../Plotting/Modules/ResultModule.C" |
15 |
– |
#include "../../Plotting/Modules/Systematics.C" |
15 |
|
#include "../../Plotting/Modules/CrossSectionReader.C" |
16 |
+ |
#include "../../Plotting/Modules/Systematics.C" |
17 |
+ |
#include "../../Plotting/Modules/SugarCoating.C" |
18 |
+ |
#include "../../Plotting/Modules/ExclusionPlot.C" |
19 |
|
#include "../../Plotting/Modules/SUSYScan.C" |
20 |
|
#include "../last_configuration.C" |
21 |
|
|
54 |
|
float njobs=atoi(args[1]); |
55 |
|
float jobnumber=atoi(args[2]); |
56 |
|
|
57 |
+ |
read_config(); |
58 |
+ |
|
59 |
|
gROOT->SetStyle("Plain"); |
60 |
|
setTDRStyle(); |
61 |
|
gStyle->SetTextFont(42); |
62 |
|
bool showList=false; |
63 |
|
set_directory(PlottingSetup::directoryname); |
64 |
|
set_treename("events");//you can set the treename here to be used; options are "events" (for reco) for "PFevents" (for particle flow) |
61 |
– |
read_config(); |
65 |
|
define_SMS_sample(showList,allsamples,signalsamples,scansample); |
66 |
|
setlumi(luminosity); |
67 |
|
do_png(true); |
74 |
|
bool doquick=true; |
75 |
|
bool systonly=false; |
76 |
|
bool effonly=true; |
77 |
< |
scan_SUSY_parameter_space(mcjzb,datajzb,jzb_cuts,PlottingSetup::requireZ,MCPeakError, njobs, jobnumber,systonly,effonly); |
77 |
> |
scan_SUSY_parameter_space(mcjzb,datajzb,jzb_cuts,PlottingSetup::requireZ,MCPeakError,DataPeakError, njobs, jobnumber,systonly,effonly); |
78 |
|
return 0; |
79 |
|
} |
80 |
|
|