CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DataFormats/JetReco/interface/CastorJetID.h

Go to the documentation of this file.
00001 #ifndef DataFormats_JetReco_interface_CastorJetID_h
00002 #define DataFormats_JetReco_interface_CastorJetID_h
00003 
00013 #include "DataFormats/Common/interface/ValueMap.h"
00014 
00015 namespace reco {
00016   struct CastorJetID {
00017 
00018     // initialize 
00019     CastorJetID() {
00020       emEnergy = 0.0;
00021       hadEnergy = 0.0; 
00022       fem = 0.0;
00023       width = 0.0;
00024       depth = 0.0;
00025       fhot = 0.0;
00026       sigmaz = 0.0;
00027       nTowers = 0;
00028       
00029     }
00030 
00031     double emEnergy;
00032     double hadEnergy; 
00033     double fem;
00034     double width;
00035     double depth;
00036     double fhot;
00037     double sigmaz;
00038     int nTowers;
00039 
00040   };
00041 
00042   typedef edm::ValueMap<CastorJetID>   CastorJetIDValueMap;
00043 }
00044 
00045 #endif