|
||||
File indexing completed on 2024-04-06 12:04:44
0001 // -*- C++ -*- 0002 #ifndef METRECO_COMMON_MET_DATA_H 0003 #define METRECO_COMMON_MET_DATA_H 0004 0005 /// \class CommonMETData 0006 /// 0007 /// \short Structure containing data common to all types of MET 0008 /// 0009 /// \author Michael Schmitt, Richard Cavanaugh The University of Florida 0010 0011 //____________________________________________________________________________|| 0012 struct CommonMETData { 0013 CommonMETData() : met(0), mex(0), mey(0), mez(0), sumet(0), phi(0) {} 0014 double met; 0015 double mex; 0016 double mey; 0017 double mez; 0018 double sumet; 0019 double phi; // MM: used in mva/noPU MET 0020 }; 0021 0022 //____________________________________________________________________________|| 0023 #endif // METRECO_COMMON_MET_DATA_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |