Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EgammaReco_BasicClusterShapeAssociation_h
0002 #define EgammaReco_BasicClusterShapeAssociation_h
0003 //  \class BasicClusterShapeAssociation
0004 //
0005 //  \association of ClusterShape to BasicCluster
0006 //
0007 //
0008 #include "DataFormats/EgammaReco/interface/ClusterShapeFwd.h"
0009 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
0010 #include "DataFormats/Common/interface/Ref.h"
0011 #include "DataFormats/Common/interface/RefVector.h"
0012 #include "DataFormats/Common/interface/AssociationMap.h"
0013 #include <vector>
0014 
0015 namespace reco {
0016   typedef edm::AssociationMap<edm::OneToOne<BasicClusterCollection, ClusterShapeCollection> >
0017       BasicClusterShapeAssociationCollection;
0018   typedef BasicClusterShapeAssociationCollection::value_type BasicClusterShapeAssociation;
0019   typedef edm::Ref<BasicClusterShapeAssociationCollection> BasicClusterShapeAssociationRef;
0020   typedef edm::RefProd<BasicClusterShapeAssociationCollection> BasicClusterShapeAssociationRefProd;
0021   typedef edm::RefVector<BasicClusterShapeAssociationCollection> BasicClusterShapeAssociationRefVector;
0022 }  // namespace reco
0023 
0024 #endif