Revision: | 1.1 |
Committed: | Sat Nov 27 10:41:09 2010 UTC (14 years, 5 months ago) by auterman |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | code cleanup |
# | User | Rev | Content |
---|---|---|---|
1 | auterman | 1.1 | #ifndef ISOMASSLINES_H |
2 | #define ISOMASSLINES_H | ||
3 | |||
4 | #include <vector> | ||
5 | |||
6 | class TGraph; | ||
7 | class SusyScan; | ||
8 | |||
9 | class IsoMassLine { | ||
10 | public: | ||
11 | IsoMassLine(std::vector<SusyScan*> * scan):_scan(scan){} | ||
12 | TGraph * get( double(*x)(const SusyScan*), double(*y)(const SusyScan*), | ||
13 | double(*func)(const SusyScan*), double mass, double diff=5.); | ||
14 | |||
15 | private: | ||
16 | std::vector<SusyScan*> * _scan; | ||
17 | }; | ||
18 | |||
19 | #endif |