From bf7e8381e7b0cf4e951e87de1deacef2adb57f66 Mon Sep 17 00:00:00 2001 From: Andrew Loeliger Date: Fri, 21 Jun 2024 10:33:09 -0500 Subject: [PATCH] apply formatting --- .../plugins/implementations_stage2/CICADAUnpacker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EventFilter/L1TRawToDigi/plugins/implementations_stage2/CICADAUnpacker.cc b/EventFilter/L1TRawToDigi/plugins/implementations_stage2/CICADAUnpacker.cc index 202c112f83b69..f325e32f2386b 100644 --- a/EventFilter/L1TRawToDigi/plugins/implementations_stage2/CICADAUnpacker.cc +++ b/EventFilter/L1TRawToDigi/plugins/implementations_stage2/CICADAUnpacker.cc @@ -29,7 +29,7 @@ namespace l1t { std::vector cicadaWords = {0, 0, 0, 0}; //the last 4 words are CICADA words for (uint32_t i = 2; i < 6; ++i) { - cicadaWords.at(i-2) = ((block.payload().at(i)) >> 28); + cicadaWords.at(i - 2) = ((block.payload().at(i)) >> 28); } float cicadaScore = convertCICADABitsToFloat(cicadaWords);