Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CaloAnalysis_SimClusterFwd_h
0002 #define CaloAnalysis_SimClusterFwd_h
0003 #include "DataFormats/Common/interface/Ref.h"
0004 #include "DataFormats/Common/interface/RefProd.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006 #include <vector>
0007 
0008 class SimCluster;
0009 typedef std::vector<SimCluster> SimClusterCollection;
0010 typedef edm::Ref<SimClusterCollection> SimClusterRef;
0011 typedef edm::RefVector<SimClusterCollection> SimClusterRefVector;
0012 typedef edm::RefProd<SimClusterCollection> SimClusterRefProd;
0013 typedef edm::RefVector<SimClusterCollection> SimClusterContainer;
0014 
0015 std::ostream &operator<<(std::ostream &s, SimCluster const &tp);
0016 
0017 #endif