Skip to content
Snippets Groups Projects
Commit fbabe3bf authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'cppcheck.LArReadoutGeometry-20201112' into 'master'

LArReadoutGeometry: Fix cppcheck warnings.

See merge request atlas/athena!38158
parents c52dccea 01e5663c
No related branches found
No related tags found
No related merge requests found
......@@ -453,7 +453,7 @@ FCAL_ChannelMap::print_tubemap( int imap) const
boost::io::ios_all_saver ias (std::cout);
std::cout << "First 10 elements of the New FCAL tube map : " << imap << std::endl;
std::cout.precision(5);
for ( int i=0; i<10; i++, it++)
for ( int i=0; i<10; ++i, ++it)
std::cout << std::hex << it->first << "\t"
<< (it->second).get_tileName() << std::dec <<"\t"
<< (it->second).x() <<"\t"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment