File indexing completed on 2025-12-16 09:19:55
0001 #include "CaloVertexMap.h"
0002
0003 #include <map>
0004
0005 class CaloVertex;
0006
0007 namespace
0008 {
0009 std::map<unsigned int, CaloVertex *> DummyCaloVertexMap;
0010 }
0011
0012 CaloVertexMap::ConstIter CaloVertexMap::begin() const
0013 {
0014 return DummyCaloVertexMap.end();
0015 }
0016
0017 CaloVertexMap::ConstIter CaloVertexMap::find(unsigned int ) const
0018 {
0019 return DummyCaloVertexMap.end();
0020 }
0021
0022 CaloVertexMap::ConstIter CaloVertexMap::end() const
0023 {
0024 return DummyCaloVertexMap.end();
0025 }
0026
0027 CaloVertexMap::Iter CaloVertexMap::begin()
0028 {
0029 return DummyCaloVertexMap.end();
0030 }
0031
0032 CaloVertexMap::Iter CaloVertexMap::find(unsigned int )
0033 {
0034 return DummyCaloVertexMap.end();
0035 }
0036
0037 CaloVertexMap::Iter CaloVertexMap::end()
0038 {
0039 return DummyCaloVertexMap.end();
0040 }