EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrHitSetContainer.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrHitSetContainer.cc
1 
7 #include "TrkrHitSetContainer.h"
8 
9 #include <TSystem.h>
10 
11 #include <cstdlib>
12 #include <iostream>
13 
14 
15 namespace
16 {
17  TrkrHitSetContainer::Map dummy_map;
18 }
19 
21 {
22  std::cout << "TrkrHitSetContainer: Reset() not implemented by daughter class" << std::endl;
23  gSystem->Exit(1);
24 }
25 
28 { return dummy_map.cbegin(); }
29 
32 { return dummy_map.cbegin(); }
33 
36 { return dummy_map.begin(); }
37 
40 { return std::make_pair( dummy_map.cbegin(), dummy_map.cend() ); }
41 
44 { return std::make_pair( dummy_map.cbegin(), dummy_map.cend() ); }
45 
48 { return std::make_pair( dummy_map.cbegin(), dummy_map.cend() ); }