File indexing completed on 2024-04-06 12:04:23
0001 #ifndef DataFormats_JetReco_interface_CastorJetID_h
0002 #define DataFormats_JetReco_interface_CastorJetID_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include "DataFormats/Common/interface/ValueMap.h"
0014
0015 namespace reco {
0016 struct CastorJetID {
0017
0018 CastorJetID() {
0019 emEnergy = 0.0;
0020 hadEnergy = 0.0;
0021 fem = 0.0;
0022 width = 0.0;
0023 depth = 0.0;
0024 fhot = 0.0;
0025 sigmaz = 0.0;
0026 nTowers = 0;
0027 }
0028
0029 double emEnergy;
0030 double hadEnergy;
0031 double fem;
0032 double width;
0033 double depth;
0034 double fhot;
0035 double sigmaz;
0036 int nTowers;
0037 };
0038
0039 typedef edm::ValueMap<CastorJetID> CastorJetIDValueMap;
0040 }
0041
0042 #endif