Revision: | 1.2 |
Committed: | Sun Jun 13 17:27:01 2010 UTC (14 years, 10 months ago) by konec |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Kasia_30_04_2012, Mikolaj_08_10_2011, Mikolaj_05_10_2011, Mikolaj_14_09_2011, Artur_27_07_2011, Artur_25_07_2011, V00-02-01, V00-02-00, V00-01-00 |
Changes since 1.1: | +7 -1 lines |
Log Message: | *** empty log message *** |
# | User | Rev | Content |
---|---|---|---|
1 | konec | 1.1 | #ifndef L1Obj_H |
2 | #define L1Obj_H | ||
3 | konec | 1.2 | #include "TObject.h" |
4 | |||
5 | struct L1Obj : public TObject { | ||
6 | |||
7 | konec | 1.1 | float pt, eta, phi; |
8 | int bx, q; | ||
9 | konec | 1.2 | |
10 | konec | 1.1 | bool isValid() { return q >= 0;} |
11 | konec | 1.2 | |
12 | konec | 1.1 | L1Obj() : pt(0.),eta(0.),phi(0.),bx(0),q(-1) {} |
13 | konec | 1.2 | ClassDef(L1Obj,1) |
14 | konec | 1.1 | }; |
15 | #endif |