Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:40

0001 #include "InttVertexMap.h"
0002 
0003 // class BbcVertex;
0004 
0005 std::map<unsigned int, InttVertex*> DummyInttVertexMap;
0006 
0007 InttVertexMap::ConstIter InttVertexMap::begin() const
0008 {
0009   return DummyInttVertexMap.end();
0010 }
0011 
0012 InttVertexMap::ConstIter InttVertexMap::find(unsigned int /*idkey*/) const
0013 {
0014   return DummyInttVertexMap.end();
0015 }
0016 
0017 InttVertexMap::ConstIter InttVertexMap::end() const
0018 {
0019   return DummyInttVertexMap.end();
0020 }
0021 
0022 InttVertexMap::Iter InttVertexMap::begin()
0023 {
0024   return DummyInttVertexMap.end();
0025 }
0026 
0027 InttVertexMap::Iter InttVertexMap::find(unsigned int /*idkey*/)
0028 {
0029   return DummyInttVertexMap.end();
0030 }
0031 
0032 InttVertexMap::Iter InttVertexMap::end()
0033 {
0034   return DummyInttVertexMap.end();
0035 }