Revision: | 1.1 |
Committed: | Tue Nov 23 20:16:52 2010 UTC (14 years, 5 months ago) by auterman |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | adding new functionality |
# | User | Rev | Content |
---|---|---|---|
1 | auterman | 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 | }; | ||
19 | |||
20 | |||
21 | #endif |