Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CdbUrlSave.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CdbUrlSave.cc
1 #include "CdbUrlSave.h"
2 
3 #include <phool/phool.h>
4 
5 #include <cstdint> // for uint64_t
6 #include <iostream>
7 
8 class PHObject;
9 
10 static std::vector<std::tuple<std::string, std::string, uint64_t>> dummy;
11 
12 PHObject*
14 {
15  std::cout << "CdbUrlSave::CloneMe() is not implemented in daugther class" << std::endl;
16  return nullptr;
17 }
18 
20 {
21  std::cout << PHWHERE << "ERROR Reset() not implemented by daughter class" << std::endl;
22  return;
23 }
24 
25 void CdbUrlSave::identify(std::ostream& os) const
26 {
27  os << "identify yourself: virtual CdbUrlSave Object" << std::endl;
28  return;
29 }
30 
32 {
33  std::cout << PHWHERE << "isValid not implemented by daughter class" << std::endl;
34  return 0;
35 }
36 
37 std::vector<std::tuple<std::string, std::string, uint64_t>>::const_iterator CdbUrlSave::begin() const
38 {
39  return dummy.begin();
40 }
41 
42 std::vector<std::tuple<std::string, std::string, uint64_t>>::const_iterator CdbUrlSave::end() const
43 {
44  return dummy.begin();
45 }