Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EgammaReco_SuperClusterFwd_h
0002 #define EgammaReco_SuperClusterFwd_h
0003 #include <vector>
0004 #include "DataFormats/Common/interface/Ref.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 
0008 namespace reco {
0009   class SuperCluster;
0010 
0011   /// collection of SuperCluser objectr
0012   typedef std::vector<SuperCluster> SuperClusterCollection;
0013 
0014   /// reference to an object in a collection of SuperCluster objects
0015   typedef edm::Ref<SuperClusterCollection> SuperClusterRef;
0016 
0017   /// reference to a collection of SuperCluster objects
0018   typedef edm::RefProd<SuperClusterCollection> SuperClusterRefProd;
0019 
0020   /// vector of references to objects in the same colletion of SuperCluster objects
0021   typedef edm::RefVector<SuperClusterCollection> SuperClusterRefVector;
0022 
0023   /// iterator over a vector of reference to SuperClusters
0024   typedef SuperClusterRefVector::iterator superCluster_iterator;
0025 }  // namespace reco
0026 
0027 #endif