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