Back to home page

Project CMSSW displayed by LXR

 
 

    


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 /** \class reco::CastorJetID
0005  *
0006  * \short Castor Jet ID object
0007  *
0008  * \author Salvatore Rappoccio, JHU
0009  *
0010  * \version   Original: 17-Sept-2009 by Salvatore Rappoccio
0011  ************************************************************/
0012 
0013 #include "DataFormats/Common/interface/ValueMap.h"
0014 
0015 namespace reco {
0016   struct CastorJetID {
0017     // initialize
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 }  // namespace reco
0041 
0042 #endif