Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EGammaReco_ElectronSeedFwd_h
0002 #define EGammaReco_ElectronSeedFwd_h
0003 
0004 #include <vector>
0005 #include "DataFormats/Common/interface/Ref.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 #include "DataFormats/Common/interface/RefVector.h"
0008 
0009 namespace reco {
0010   class ElectronSeed;
0011   /// collection of ElectronSeed objects
0012   typedef std::vector<ElectronSeed> ElectronSeedCollection;
0013   /// reference to an object in a collection of ElectronSeed objects
0014   typedef edm::Ref<ElectronSeedCollection> ElectronSeedRef;
0015   /// reference to a collection of ElectronSeed objects
0016   typedef edm::RefProd<ElectronSeedCollection> ElectronSeedRefProd;
0017   /// vector of objects in the same collection of ElectronSeed objects
0018   typedef edm::RefVector<ElectronSeedCollection> ElectronSeedRefVector;
0019 }  // namespace reco
0020 
0021 #endif