ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/Development/DistributedModelCalculations/Limits/LimitWorkerScript.C
Revision: 1.4
Committed: Wed Apr 25 13:33:00 2012 UTC (13 years ago) by buchmann
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +2 -0 lines
Log Message:
Updated includes

File Contents

# User Rev Content
1 buchmann 1.1 #include <iostream>
2     #include <vector>
3     #include <sys/stat.h>
4     #include "../../Plotting/Modules/GeneralToolBox.C"
5     #include "../../Plotting/Modules/SampleClass.C"
6     #include "../../Plotting/Modules/Setup.C"
7     #include "../../Plotting/Modules/PeakFinder.C"
8     #include "../../Plotting/Modules/Poisson_Calculator.C"
9     #include "../../Plotting/Modules/setTDRStyle.C"
10     #include "../../Plotting/Modules/ActiveSamples.C"
11     #include "../../Plotting/Modules/UpperLimitsWithShape.C"
12     #include "../../Plotting/Modules/Plotting_Functions.C"
13     #include "../../Plotting/Modules/LimitCalculation.C"
14     #include "../../Plotting/Modules/ResultModule.C"
15 buchmann 1.2 #include "../../Plotting/Modules/CrossSectionReader.C"
16 buchmann 1.1 #include "../../Plotting/Modules/Systematics.C"
17 buchmann 1.4 #include "../../Plotting/Modules/SugarCoating.C"
18     #include "../../Plotting/Modules/ExclusionPlot.C"
19 buchmann 1.1 #include "../../Plotting/Modules/SUSYScan.C"
20     #include "../last_configuration.C"
21    
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(int narg, char *args[])
46     {
47     if(narg<3||narg>3) {
48     cout << "USAGE : " << endl;
49     cout << args[0] << " Njobs thisjob" << endl;
50     cout << " where Njobs is the number of jobs, and thisjob correspond to this jobs' job number" << endl;
51     return -1;
52     }
53    
54     float njobs=atoi(args[1]);
55     float jobnumber=atoi(args[2]);
56 buchmann 1.3 read_config();
57 buchmann 1.1
58     gROOT->SetStyle("Plain");
59     setTDRStyle();
60     gStyle->SetTextFont(42);
61     bool showList=false;
62     set_directory(PlottingSetup::directoryname);
63     set_treename("events");//you can set the treename here to be used; options are "events" (for reco) for "PFevents" (for particle flow)
64     define_SMS_sample(showList,allsamples,signalsamples,scansample);
65     setlumi(luminosity);
66     do_png(true);
67     do_pdf(false);
68     do_eps(false);
69     do_C(false);
70     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!
71    
72    
73 buchmann 1.2 scan_SUSY_parameter_space(mcjzb,datajzb,jzb_cuts,PlottingSetup::requireZ,MCPeakError,DataPeakError, njobs, jobnumber);
74 buchmann 1.1
75     return 0;
76     }
77