Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // author: Salvatore Rappoccio
0002 // date: 28-Dec-2010
0003 
0004 #ifndef METReco_PFClusterMETfwd_h
0005 #define METReco_PFClusterMETfwd_h
0006 
0007 #include "DataFormats/Common/interface/Ref.h"
0008 #include "DataFormats/Common/interface/RefVector.h"
0009 #include "DataFormats/Common/interface/RefProd.h"
0010 
0011 namespace reco {
0012   class PFClusterMET;
0013   /// collection of PFClusterMET objects
0014   typedef std::vector<PFClusterMET> PFClusterMETCollection;
0015   /// edm references
0016   typedef edm::Ref<PFClusterMETCollection> PFClusterMETRef;
0017   typedef edm::RefVector<PFClusterMETCollection> PFClusterMETRefVector;
0018   typedef edm::RefProd<PFClusterMETCollection> PFClusterMETRefProd;
0019 }  // namespace reco
0020 #endif