ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/SusyScan/PlotScript/TheLimits.h
Revision: 1.1
Committed: Sat Nov 27 10:41:10 2010 UTC (14 years, 5 months ago) by auterman
Content type: text/plain
Branch: MAIN
Log Message:
code cleanup

File Contents

# User Rev Content
1 auterman 1.1 #ifndef THELIMITS_H
2     #define THELIMITS_H
3    
4     #include <vector>
5    
6     class SusyScan;
7     class TH2;
8     class GeneratorMasses;
9    
10     class TheLimits{
11     public:
12     TheLimits(){}
13    
14     void add(SusyScan*s){_scan.push_back(s);}
15     void plot(TH2*, double(*x)(const SusyScan*), double(*y)(const SusyScan*), double(*f)(const SusyScan*) );
16     void match(const std::vector<GeneratorMasses>);
17    
18     std::vector<SusyScan*> * GetScan(){return &_scan;}
19    
20     private:
21     std::vector<SusyScan*> _scan;
22     };
23    
24    
25     #endif