ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/AnalysisFramework/DistributedModelCalculations/last_configuration.C
Revision: 1.8
Committed: Wed Oct 19 10:52:29 2011 UTC (13 years, 6 months ago) by buchmann
Content type: text/plain
Branch: MAIN
CVS Tags: cbaf_2p1ifb
Changes since 1.7: +0 -4 lines
Log Message:
Not using 200 GeV cut for 2.1 /fb

File Contents

# Content
1 #include <iostream>
2 #include <vector>
3
4 using namespace std;
5
6 namespace PlottingSetup {
7 string datajzb="datajzb_ERROR";
8 string mcjzb="mcjzb_ERROR";
9 vector<float>jzb_cuts;
10 float MCPeakError=-999;
11 }
12
13 void read_config() {
14 datajzb="(jzb[1]+0.06*pt-3.11057)";
15 mcjzb="(jzb[1]+0.04*pt-1.99849)";
16
17
18
19 MCPeakError=0.142505;
20
21 jzb_cuts.push_back(50);
22 jzb_cuts.push_back(100);
23 jzb_cuts.push_back(150);
24
25
26 Nobs.push_back(168);
27 Nobs.push_back(48);
28 Nobs.push_back(11);
29 Npred.push_back(164);
30 Npred.push_back(37.3333);
31 Npred.push_back(7);
32 Nprederr.push_back(43.4943);
33 Nprederr.push_back(10.5505);
34 Nprederr.push_back(2.5658);
35
36
37 luminosity=2096;
38
39
40 cout << "Configuration successfully loaded!" << endl;
41
42 }
43