We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4abc548 commit 6a37cb4Copy full SHA for 6a37cb4
Detectors/TOF/reconstruction/src/Decoder.cxx
@@ -323,9 +323,9 @@ void Decoder::printHitInfo(int icru) const
323
void Decoder::printRDH() const
324
{
325
printf("______RDH_INFO_____\n");
326
- printf("VERSION = %d\n", mRDH->version);
327
- printf("BLOCK LENGTH = %d\n", mRDH->blockLength);
328
- printf("HEADER SIZE = %d\n", mRDH->headerSize);
+ printf("VERSION = %d\n", int(mRDH->version));
+ printf("BLOCK LENGTH = %d\n", int(mRDH->blockLength));
+ printf("HEADER SIZE = %d\n", int(mRDH->headerSize));
329
printf("MEMORY SIZE = %d\n", mRDH->memorySize);
330
printf("PACKET COUNTER= %d\n", mRDH->packetCounter);
331
printf("CRU ID = %d\n", mRDH->cruID);
0 commit comments