CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1AnalysisRecoMetDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisRecoMetDataFormat_H__
2 #define __L1Analysis_L1AnalysisRecoMetDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Addition of met reco information
9 //-------------------------------------------------------------------------------
10 
11 #include <vector>
12 
13 namespace L1Analysis
14 {
16  {
19 
20  void Reset()
21  {
22  met = -999.;
23  metPhi = -999.;
24  Ht = -999.;
25  mHt = -999.;
26  mHtPhi = -999.;
27  sumEt = -999.;
28  ecalFlag = 0;
29  hcalFlag = 0;
30  }
31 
32  float met;
33  float metPhi;
34  float Ht;
35  float mHt;
36  float mHtPhi;
37  float sumEt;
38  unsigned short ecalFlag;
39  unsigned short hcalFlag;
40 
41  };
42 }
43 #endif
44 
45