File indexing completed on 2026-04-02 08:12:37
0001 #include "BcoInfo.h"
0002
0003 #include <phool/phool.h>
0004
0005 #include <iostream>
0006
0007 void BcoInfo::Reset()
0008 {
0009 std::cout << PHWHERE << "ERROR Reset() not implemented by daughter class" << std::endl;
0010 return;
0011 }
0012
0013 void BcoInfo::identify(std::ostream& os) const
0014 {
0015 os << "identify yourself: virtual BcoInfo Object" << std::endl;
0016 return;
0017 }
0018
0019 int BcoInfo::isValid() const
0020 {
0021 std::cout << PHWHERE << "isValid not implemented by daughter class" << std::endl;
0022 return 0;
0023 }