Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EgammaReco_ClusterShapeFwd_h
0002 #define EgammaReco_ClusterShapeFwd_h
0003 #include "DataFormats/Common/interface/Ref.h"
0004 #include "DataFormats/Common/interface/RefProd.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006 
0007 namespace reco {
0008   class ClusterShape;
0009 
0010   /// collection of ClusterShape objects
0011   typedef std::vector<ClusterShape> ClusterShapeCollection;
0012 
0013   /// reference to an object in a collection of ClusterShape objects
0014   typedef edm::Ref<ClusterShapeCollection> ClusterShapeRef;
0015 
0016   /// reference to a collection of ClusterShape objects
0017   typedef edm::RefProd<ClusterShapeCollection> ClusterShapeRefProd;
0018 
0019   /// vector of references to objects in the same collectin of ClusterShape objects
0020   typedef edm::RefVector<ClusterShapeCollection> ClusterShapeRefVector;
0021 
0022   /// iterator over a vector of references to ClusterShape objects
0023   typedef ClusterShapeRefVector::iterator clusterShape_iterator;
0024 }  // namespace reco
0025 
0026 #endif