File indexing completed on 2024-04-06 12:26:40
0001 #ifndef RecoMET_MuonMETInfo_h
0002 #define RecoMET_MuonMETInfo_h
0003
0004 #include "DataFormats/Math/interface/Point3D.h"
0005
0006 struct MuonMETInfo {
0007 float ecalE;
0008 float hcalE;
0009 float hoE;
0010 math::XYZPoint ecalPos;
0011 math::XYZPoint hcalPos;
0012 math::XYZPoint hoPos;
0013 bool useAverage;
0014
0015 bool useTkAssociatorPositions;
0016 bool useHO;
0017
0018 MuonMETInfo()
0019 : ecalE(0),
0020 hcalE(0),
0021 hoE(0),
0022 ecalPos(0, 0, 0),
0023 hcalPos(0, 0, 0),
0024 hoPos(0, 0, 0),
0025 useAverage(false),
0026 useTkAssociatorPositions(false),
0027 useHO(false) {}
0028 };
0029
0030 #endif