00001 #ifndef Type1MET_MuonMETInfo_h
00002 #define Type1MET_MuonMETInfo_h
00003
00004 #include "DataFormats/Math/interface/Point3D.h"
00005
00006 struct MuonMETInfo {
00007
00008 float ecalE;
00009 float hcalE;
00010 float hoE;
00011 math::XYZPoint ecalPos;
00012 math::XYZPoint hcalPos;
00013 math::XYZPoint hoPos;
00014 bool useAverage;
00015
00016 bool useTkAssociatorPositions;
00017 bool useHO;
00018
00019 MuonMETInfo():
00020 ecalE(0), hcalE(0), hoE(0),
00021 ecalPos(0,0,0),hcalPos(0,0,0), hoPos(0,0,0),
00022 useAverage(0), useTkAssociatorPositions(0),useHO(0){ }
00023
00024 };
00025
00026
00027 #endif
00028
00029
00030
00031
00032
00033
00034
00035