# | Line 1 | Line 1 | |
---|---|---|
1 | #ifndef PLOT_H | |
2 | #define PLOT_H | |
3 | ||
4 | – | #include <vector> |
5 | – | |
6 | – | class SusyScan; |
7 | – | class TH2; |
8 | – | |
9 | – | class TheLimits{ |
10 | – | public: |
11 | – | TheLimits(){} |
12 | – | |
13 | – | void add(SusyScan*s){_scan.push_back(s);} |
14 | – | void plot(TH2*, double(*x)(const SusyScan*), double(*y)(const SusyScan*), double(*f)(const SusyScan*) ); |
15 | – | |
16 | – | private: |
17 | – | std::vector<SusyScan*> _scan; |
18 | – | }; |
4 | ||
5 | ||
6 | #endif |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |