Skip to content

Commit d66fba6

Browse files
committed
simple number formatting update
1 parent 193c3e0 commit d66fba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DetectorK/DetectorK.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,11 +461,11 @@ void DetectorK::PrintLayout(Bool_t full) {
461461
if (tmp->phiRes==RIDICULOUS)
462462
printf(" - ");
463463
else
464-
printf("%3.0f ",tmp->phiRes*10000);
464+
printf("%3.2f ",tmp->phiRes*10000);
465465
if (tmp->zRes==RIDICULOUS)
466466
printf(" -");
467467
else
468-
printf("%3.0f",tmp->zRes*10000);
468+
printf("%3.2f",tmp->zRes*10000);
469469

470470
if (tmp->zRes==RIDICULOUS)
471471
printf("\t -\n");

0 commit comments

Comments
 (0)