72 std::string tubeString(
fTubes.size(),
'.');
73 std::string tubeNumbDec(
fTubes.size(),
'0');
74 std::string tubeNumbOne(
fTubes.size(),
'0');
76 for (
const auto tempTube :
fTubes) {
78 LOG(info) <<
" Tube " << tempTube->GetAddress() <<
" @ " << tempTube->GetPosition().X() <<
","
79 << tempTube->GetPosition().Y() <<
"," << tempTube->GetPosition().Z() <<
" -> "
80 << tempTube->GetWireDirection().X() <<
"," << tempTube->GetWireDirection().Y() <<
","
81 << tempTube->GetWireDirection().Z();
82 tubeNumbDec[iobj] = char(tempTube->GetTubeIndex() / 10 + 48);
83 tubeNumbOne[iobj] = char(tempTube->GetTubeIndex() % 10 + 48);
84 tubeString[tempTube->GetTubeIndex() - 1] =
'*';
87 LOG(info) <<
" Tubes " << tubeString;
88 LOG(info) <<
" - " << tubeNumbDec;
89 LOG(info) <<
" - " << tubeNumbOne;