35                     const std::vector<float>& digits ) :
 
   42                     std::vector<float>&& digits ) :
 
   44   m_TTL1digits (std::move(digits))
 
   49             const std::vector<double>& digits ) :
 
   55   std::vector<double>::const_iterator it1=digits.begin();
 
   56   std::vector<double>::const_iterator it2=digits.end();  
 
   59   for ( ; it1!=it2; ++it1) {
 
   91     std::cout << (std::string) (*
this) << std::endl;
 
   94 TileTTL1::operator std::string()
 const 
  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);