Revision: | 1.1 |
Committed: | Tue Jun 18 10:18:22 2013 UTC (11 years, 10 months ago) by grimes |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | Fixed some bugs, and started adding functionality to calculate rates. |
# | User | Rev | Content |
---|---|---|---|
1 | grimes | 1.1 | #ifndef l1menu_ISample_h |
2 | #define l1menu_ISample_h | ||
3 | |||
4 | #include "l1menu/TriggerRates.h" | ||
5 | |||
6 | // Forward declarations | ||
7 | namespace l1menu | ||
8 | { | ||
9 | class TriggerMenu; | ||
10 | } | ||
11 | |||
12 | |||
13 | namespace l1menu | ||
14 | { | ||
15 | class ISample | ||
16 | { | ||
17 | public: | ||
18 | virtual ~ISample() {} | ||
19 | virtual const l1menu::TriggerRates rate( const l1menu::TriggerMenu& menu ) const = 0; | ||
20 | }; | ||
21 | |||
22 | } // end of namespace l1menu | ||
23 | |||
24 | #endif |