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