Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:06

0001 
0002 #ifndef EgammaReco_GsfElectronFwd_h
0003 #define EgammaReco_GsfElectronFwd_h
0004 
0005 #include "DataFormats/Common/interface/Ref.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 #include "DataFormats/Common/interface/RefVector.h"
0008 #include <vector>
0009 
0010 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
0011 
0012 namespace reco {
0013 
0014   class GsfElectron;
0015 
0016   /// collection of GsfElectron objects
0017   typedef std::vector<GsfElectron> GsfElectronCollection;
0018   //typedef GsfElectronCollection PixelMatchGsfElectronCollection ;
0019 
0020   /// reference to an object in a collection of GsfElectron objects
0021   typedef edm::Ref<GsfElectronCollection> GsfElectronRef;
0022   //typedef GsfElectronRef PixelMatchGsfElectronRef ;
0023 
0024   /// reference to a collection of GsfElectron objects
0025   typedef edm::RefProd<GsfElectronCollection> GsfElectronRefProd;
0026   //typedef GsfElectronRefProd PixelMatchGsfElectronRefProd ;
0027 
0028   /// vector of objects in the same collection of GsfElectron objects
0029   typedef edm::RefVector<GsfElectronCollection> GsfElectronRefVector;
0030   //typedef GsfElectronRefVector PixelMatchGsfElectronRefVector ;
0031 
0032   /// iterator over a vector of reference to GsfElectron objects
0033   typedef GsfElectronRefVector::iterator GsfElectron_iterator;
0034   //typedef GsfElectron_iterator PixelMatchGsfElectron_iterator ;
0035 
0036 }  // namespace reco
0037 
0038 #endif