Revision: | 1.1 |
Committed: | Tue Oct 20 17:15:16 2009 UTC (15 years, 6 months ago) by dgele |
Content type: | text/plain |
Branch: | MAIN |
Branch point for: | ANA |
Log Message: | Initial revision |
# | User | Rev | Content |
---|---|---|---|
1 | dgele | 1.1 | #ifndef __TOP_TREE_SAMPLE_INFO__ |
2 | #define __TOP_TREE_SAMPLE_INFO__ | ||
3 | |||
4 | #include <string> | ||
5 | #include <vector> | ||
6 | |||
7 | namespace TopTree | ||
8 | { | ||
9 | class SampleInfo | ||
10 | { | ||
11 | public: | ||
12 | SampleInfo(); | ||
13 | ~SampleInfo(); | ||
14 | |||
15 | double cross_section; | ||
16 | int TotalEvents; | ||
17 | std::string Name; | ||
18 | }; | ||
19 | } | ||
20 | #endif |