Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:11

0001 #include "TrkrClusterIterationMap.h"
0002 
0003 #include <TSystem.h>
0004 #include <iostream>
0005 
0006 namespace
0007 {
0008   TrkrClusterIterationMap::Map dummy;
0009 }
0010 
0011 void TrkrClusterIterationMap::Reset()
0012 {
0013   std::cout << "TrkrClusterIterationMap: Reset() not implemented by daughter class" << std::endl;
0014   gSystem->Exit(1);
0015 }
0016 
0017 TrkrClusterIterationMap::ConstIter TrkrClusterIterationMap::begin() const
0018 {
0019   return dummy.end();
0020 }
0021 
0022 TrkrClusterIterationMap::ConstIter TrkrClusterIterationMap::end() const
0023 {
0024   return dummy.end();
0025 }