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

# User Rev Content
1 buchmann 1.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 buchmann 1.6 datajzb="(jzb[1]+0.06*pt-3.11057)";
15     mcjzb="(jzb[1]+0.04*pt-1.99849)";
16 buchmann 1.1
17 buchmann 1.2
18    
19 buchmann 1.6 MCPeakError=0.142505;
20 buchmann 1.1
21     jzb_cuts.push_back(50);
22     jzb_cuts.push_back(100);
23 buchmann 1.5 jzb_cuts.push_back(150);
24 buchmann 1.1
25    
26 buchmann 1.6 Nobs.push_back(168);
27     Nobs.push_back(48);
28 buchmann 1.5 Nobs.push_back(11);
29 buchmann 1.6 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 buchmann 1.2
36    
37 buchmann 1.6 luminosity=2096;
38 buchmann 1.4
39 buchmann 1.1
40     cout << "Configuration successfully loaded!" << endl;
41    
42     }
43