94TileTTL1::operator std::string()
const
96 std::ostringstream text(std::ostringstream::out);
100 if (s_cabling->getTileTBID()->is_tiletb(
m_ID)) {
101 text <<
"MBTS Id = " << s_cabling->getTileTBID()->to_string(
m_ID);
103 text <<
" Id = " << s_cabling->getCaloLVL1_ID()->show_to_string(
m_ID);
107 text << std::setiosflags( std::ios::fixed );
108 text << std::setiosflags( std::ios::showpoint );
109 text << std::setprecision(2);
111 std::vector<float>::const_iterator it1=
m_TTL1digits.begin();
112 std::vector<float>::const_iterator it2=
m_TTL1digits.end();
114 for ( ; it1!=it2; ++it1) text <<
" " << (*it1);