ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/Development/Plotting/Modules/EdgeLimit.C
Revision: 1.1
Committed: Tue Jun 12 06:12:29 2012 UTC (12 years, 10 months ago) by buchmann
Content type: text/plain
Branch: MAIN
Log Message:
Added skeleton of edge stuff

File Contents

# User Rev Content
1 buchmann 1.1 #include <iostream>
2    
3     using namespace std;
4     using namespace PlottingSetup;
5    
6    
7     ShapeDroplet LimitsFromEdge(float low_fullCLs, float high_CLs, TTree *events, string addcut, string name, string mcjzb, string datajzb, vector<float> jzbbins, float jzbpeakerrormc, float jzbpeakerrordata) {
8     write_error(__FUNCTION__,"Not implemented edge limits yet (returning crap)");
9     ShapeDroplet beta;beta.observed=-12345;beta.SignalIntegral=1;return beta;
10     }
11    
12    
13     void PrepareEdgeShapes(string mcjzb, string datajzb, vector<float> jzbbins, float jzbpeakerrordata) {
14     write_error(__FUNCTION__,"Not implemented edge shape storage yet");
15     }
16    
17