ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/EventData.h
Revision: 1.1
Committed: Thu Jul 11 11:29:44 2013 UTC (11 years, 9 months ago) by akalinow
Content type: text/plain
Branch: MAIN
CVS Tags: Artur_11_07_2013_B, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef EventData_H
2 #define EventData_H
3 #include "TObject.h"
4 #include <iostream>
5
6 #include "UserCode/L1RpcTriggerAnalysis/interface/L1Obj.h"
7
8 ///Small class to create a TTree
9 ///holding trigger response.
10
11 struct EventData: public TObject{
12
13 EventData(){};
14 ~EventData(){}
15
16 void clear();
17
18 ///Header
19 float weight;
20 ///Generated kinematics
21 float pt;
22 float eta;
23 float phi;
24 float phiHit;
25 float etaHit;
26 int charge;
27
28 std::vector<L1Obj> l1ObjectsOtf;
29 std::vector<L1Obj> l1ObjectsGmt;
30
31 ClassDef(EventData,1)
32 };
33 ///////////////////////////////////////
34 #endif