ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/L1Obj.h
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 ***

File Contents

# Content
1 #ifndef L1Obj_H
2 #define L1Obj_H
3 #include "TObject.h"
4
5 struct L1Obj : public TObject {
6
7 float pt, eta, phi;
8 int bx, q;
9
10 bool isValid() { return q >= 0;}
11
12 L1Obj() : pt(0.),eta(0.),phi(0.),bx(0),q(-1) {}
13 ClassDef(L1Obj,1)
14 };
15 #endif