@@ -214,16 +214,16 @@ void VisualMonitoringAlgorithm::VisualizeCaloHitList(const std::string &listName
214214 for (const CaloHit *const pCaloHit : caloHitList)
215215 {
216216 const LArCaloHit *const pLArCaloHit{dynamic_cast <const LArCaloHit *>(pCaloHit)};
217- const std::pair<unsigned int , unsigned int > volId{ pLArCaloHit->GetLArTPCVolumeId (), pLArCaloHit->GetDaughterVolumeId () };
217+ const std::pair<unsigned int , unsigned int > volId{pLArCaloHit->GetLArTPCVolumeId (), pLArCaloHit->GetDaughterVolumeId ()};
218218 volIdToCaloHits[volId].push_back (pCaloHit);
219219 }
220220
221221#ifdef MONITORING
222222 Color colorIter{BLACK};
223223 for (const auto &[volId, caloHitListPartition] : volIdToCaloHits)
224224 {
225- const std::string label{(listName.empty () ? " CurrentCaloHits" : listName) +
226- " , volId ( " + std::to_string (volId. first ) + " , " + std::to_string (volId.second ) + " )" };
225+ const std::string label{(listName.empty () ? " CurrentCaloHits" : listName) + " , volId ( " + std::to_string (volId. first ) + " , " +
226+ std::to_string (volId.second ) + " )" };
227227 PANDORA_MONITORING_API (VisualizeCaloHits (this ->GetPandora (), &caloHitListPartition, label.c_str (), colorIter));
228228 colorIter = static_cast <Color>(static_cast <int >(colorIter) + 1 );
229229 if (colorIter >= AUTO)
@@ -458,8 +458,8 @@ StatusCode VisualMonitoringAlgorithm::ReadSettings(const TiXmlHandle xmlHandle)
458458 PANDORA_RETURN_RESULT_IF_AND_IF (
459459 STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue (xmlHandle, " ShowPfoHierarchy" , m_showPfoHierarchy));
460460
461- PANDORA_RETURN_RESULT_IF_AND_IF (
462- STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue (xmlHandle, " PartitionCaloHitsByVolume" , m_partitionCaloHitsByVolume));
461+ PANDORA_RETURN_RESULT_IF_AND_IF (STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=,
462+ XmlHelper::ReadValue (xmlHandle, " PartitionCaloHitsByVolume" , m_partitionCaloHitsByVolume));
463463
464464 PANDORA_RETURN_RESULT_IF_AND_IF (STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=,
465465 XmlHelper::ReadVectorOfValues (xmlHandle, " SuppressMCParticles" , m_suppressMCParticles));
0 commit comments