Skip to content
Snippets Groups Projects
Commit 9b7f1a3a authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'cppcheck.CaloTPCnv-20200623' into 'master'

CaloTPCnv: Fix cppcheck warning.

See merge request !34062
parents c4fbf48a 3e75351d
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!34062CaloTPCnv: Fix cppcheck warning.
......@@ -677,7 +677,7 @@ void dump_cells (const CaloCellContainer& cont)
{
for (size_t i = 0; i < cont.size(); i++) {
const CaloCell* cell = cont[i];
printf ("%8d ", (unsigned int)cell->caloDDE()->calo_hash());
printf ("%8u ", (unsigned int)cell->caloDDE()->calo_hash());
if (const TileCell* tcell = dynamic_cast<const TileCell*> (cell)) {
dump_e (tcell->ene1());
dump_e (tcell->ene2());
......
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