Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef HFEMClusterShapeFwd_h
0002 #define HFEMClusterShapeFwd_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 HFEMClusterShape;
0009   // collection of HFEMClusterShape objects
0010   typedef std::vector<HFEMClusterShape> HFEMClusterShapeCollection;
0011 
0012   /// persistent reference to HFEMClusterShape objects
0013   typedef edm::Ref<HFEMClusterShapeCollection> HFEMClusterShapeRef;
0014 
0015   /// reference to HFEMClusterShape collection
0016   typedef edm::RefProd<HFEMClusterShapeCollection> HFEMClusterShapeRefProd;
0017 
0018   /// vector of references to HFEMClusterShape objects all in the same collection
0019   typedef edm::RefVector<HFEMClusterShapeCollection> HFEMClusterShapeRefVector;
0020 
0021   /// iterator over a vector of references to HFEMClusterShape objects
0022   typedef HFEMClusterShapeRefVector::iterator HFEMClusterShape_iterator;
0023 
0024 }  // namespace reco
0025 
0026 #endif