Revision: | 1.2 |
Committed: | Sat Nov 27 12:03:26 2010 UTC (14 years, 5 months ago) by auterman |
Content type: | text/plain |
Branch: | MAIN |
Changes since 1.1: | +0 -1 lines |
Log Message: | reorganization of code |
# | 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 match(const std::vector<GeneratorMasses>); | ||
16 | |||
17 | std::vector<SusyScan*> * GetScan(){return &_scan;} | ||
18 | |||
19 | private: | ||
20 | std::vector<SusyScan*> _scan; | ||
21 | }; | ||
22 | |||
23 | |||
24 | #endif |