ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/SusyScan/PlotScript/TheLimits.h
Revision: 1.4
Committed: Wed Jan 26 15:23:05 2011 UTC (14 years, 3 months ago) by auterman
Content type: text/plain
Branch: MAIN
Changes since 1.3: +2 -0 lines
Log Message:
A lot of improvements

File Contents

# Content
1 #ifndef THELIMITS_H
2 #define THELIMITS_H
3
4 #include <vector>
5 #include <string>
6
7 class SusyScan;
8 class TH2;
9 class GeneratorMasses;
10
11 class TheLimits{
12 public:
13 TheLimits(){}
14
15 void add(SusyScan*s){_scan.push_back(s);}
16 void FillGeneratorMasses(std::string file);
17
18 void match();
19
20 std::vector<SusyScan*> * GetScan(){return &_scan;}
21 std::vector<GeneratorMasses*> * GetGeneratorMasses(){return &_masses;}
22
23 void OverwriteLimits(std::string flag);
24
25 private:
26 std::vector<SusyScan*> _scan;
27 std::vector<GeneratorMasses*> _masses;
28 };
29
30
31 #endif