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
0011 typedef std::vector<ClusterShape> ClusterShapeCollection;
0012
0013
0014 typedef edm::Ref<ClusterShapeCollection> ClusterShapeRef;
0015
0016
0017 typedef edm::RefProd<ClusterShapeCollection> ClusterShapeRefProd;
0018
0019
0020 typedef edm::RefVector<ClusterShapeCollection> ClusterShapeRefVector;
0021
0022
0023 typedef ClusterShapeRefVector::iterator clusterShape_iterator;
0024 }
0025
0026 #endif