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
|