Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SimVertexContainer_H
0002 #define SimVertexContainer_H
0003 
0004 #include "SimDataFormats/Vertex/interface/SimVertex.h"
0005 #include "DataFormats/Common/interface/Ref.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 #include "DataFormats/Common/interface/RefVector.h"
0008 
0009 #include <vector>
0010 
0011 namespace edm {
0012   typedef std::vector<SimVertex> SimVertexContainer;
0013   typedef edm::Ref<std::vector<SimVertex> > SimVertexRef;
0014   typedef edm::RefProd<std::vector<SimVertex> > SimVertexRefProd;
0015   typedef edm::RefVector<std::vector<SimVertex> > SimVertexRefVector;
0016 
0017 }  // namespace edm
0018 
0019 #endif