Revision: | 1.1 |
Committed: | Mon Dec 14 17:03:51 2009 UTC (15 years, 4 months ago) by puigh |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V01-16, V01-15, V01-14, V01-13, V01-12, V01-11, V01-10, V01-09, V01-08, V01-07, V01-06, V01-05, V01-04, V01-03 |
Log Message: | first commit |
# | User | Rev | Content |
---|---|---|---|
1 | puigh | 1.1 | #ifndef ProdTutorial_CUtrigobj_h |
2 | #define ProdTutorial_CUtrigobj_h | ||
3 | |||
4 | #include <vector> | ||
5 | |||
6 | |||
7 | // a simple class | ||
8 | struct CUtrigobj | ||
9 | { | ||
10 | explicit CUtrigobj(double v):pt(v),eta(v),phi(v) { } | ||
11 | CUtrigobj():pt(-99),eta(-99),phi(-99) { } | ||
12 | double pt,eta,phi; | ||
13 | |||
14 | }; | ||
15 | |||
16 | // this is our new product, it is simply a | ||
17 | // collection of CUtrigobj held in an std::vector | ||
18 | typedef std::vector<CUtrigobj> CUtrigobjCollection; | ||
19 | |||
20 | #endif |