Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MbdVertexMap.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MbdVertexMap.cc
1 #include "MbdVertexMap.h"
2 
3 class MbdVertex;
4 
5 std::map<unsigned int, MbdVertex*> DummyMbdVertexMap;
6 
8 {
9  return DummyMbdVertexMap.end();
10 }
11 
12 MbdVertexMap::ConstIter MbdVertexMap::find(unsigned int /*idkey*/) const
13 {
14  return DummyMbdVertexMap.end();
15 }
16 
18 {
19  return DummyMbdVertexMap.end();
20 }
21 
23 {
24  return DummyMbdVertexMap.end();
25 }
26 
27 MbdVertexMap::Iter MbdVertexMap::find(unsigned int /*idkey*/)
28 {
29  return DummyMbdVertexMap.end();
30 }
31 
33 {
34  return DummyMbdVertexMap.end();
35 }