CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CommonMETData.h
Go to the documentation of this file.
1 #ifndef METRECO_COMMON_MET_DATA_H
2 #define METRECO_COMMON_MET_DATA_H
3 
18 #include <vector>
19 
20 //const int MET_LABEL_LEN = 24;
21 
22 struct CommonMETData {
23 
24  //char label[MET_LABEL_LEN];
25 
26  double met;
27  double mex;
28  double mey;
29  double mez;
30  double sumet;
31  double phi;
32 
33 };
34 
35 #endif // METRECO_COMMON_MET_DATA_H
Structure containing data common to all types of MET.
Definition: CommonMETData.h:22