From 2dc9b4dc7f061244a093f15a4eb5d56c059ada72 Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Thu, 17 Jul 2025 10:17:31 +0200 Subject: [PATCH 01/11] Adding gamma to energy --- Detector/Calo/include/Detector/Calo/CellParam.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Detector/Calo/include/Detector/Calo/CellParam.h b/Detector/Calo/include/Detector/Calo/CellParam.h index 7f13b5b26b..91246a02e4 100644 --- a/Detector/Calo/include/Detector/Calo/CellParam.h +++ b/Detector/Calo/include/Detector/Calo/CellParam.h @@ -82,6 +82,7 @@ namespace LHCb::Detector::Calo { double pileUpOffsetSPD() const { return m_offsetSPD; } double pileUpOffsetRMS() const { return m_eoffset; } double pileUpOffsetSPDRMS() const { return m_eoffsetSPD; } + double Gamma() const { return m_gamma; } const std::vector& pins() const { return m_pins; } const std::vector& leds() const { return m_leds; } @@ -142,6 +143,9 @@ namespace LHCb::Detector::Calo { m_offsetSPD = off; m_eoffsetSPD = eoff; } + void setGamma( double gamma ) { + m_gamma = gamma; + } std::string cellStatus() { if ( (CellQuality::Flag)m_quality == CellQuality::OK ) return CellQuality::qName( CellQuality::OK ); @@ -188,6 +192,7 @@ namespace LHCb::Detector::Calo { double m_eoffset{ 0.0 }; double m_offsetSPD{ 0.0 }; double m_eoffsetSPD{ 0.0 }; + double m_gamma{ 0.0 }; }; } // namespace LHCb::Detector::Calo -- GitLab From eca037d7814127e940271cda4d90454811cd4d30 Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Thu, 17 Jul 2025 08:18:58 +0000 Subject: [PATCH 02/11] pre-commit fixes patch generated by https://gitlab.cern.ch/lhcb/Detector/-/jobs/58897823 --- Detector/Calo/include/Detector/Calo/CellParam.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Detector/Calo/include/Detector/Calo/CellParam.h b/Detector/Calo/include/Detector/Calo/CellParam.h index 91246a02e4..d73adeb47c 100644 --- a/Detector/Calo/include/Detector/Calo/CellParam.h +++ b/Detector/Calo/include/Detector/Calo/CellParam.h @@ -143,9 +143,7 @@ namespace LHCb::Detector::Calo { m_offsetSPD = off; m_eoffsetSPD = eoff; } - void setGamma( double gamma ) { - m_gamma = gamma; - } + void setGamma( double gamma ) { m_gamma = gamma; } std::string cellStatus() { if ( (CellQuality::Flag)m_quality == CellQuality::OK ) return CellQuality::qName( CellQuality::OK ); -- GitLab From 8eaba20e7de2070d76a09d0e0d0cb62252f9c9be Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Wed, 23 Jul 2025 11:39:38 +0200 Subject: [PATCH 03/11] Move gammas to conditions --- .../include/Detector/Calo/DeCalorimeter.h | 1 + Detector/Calo/src/DeCalorimeter.cpp | 24 +++++++++++++++++++ .../ECAL/2024-v00.00/conditions.xml | 1 + compact/components/ECAL/trunk/conditions.xml | 1 + tests/ConditionsIOV/.schema.json | 3 ++- .../Conditions/Ecal/Calibration.yml/0 | 3 +++ 6 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Detector/Calo/include/Detector/Calo/DeCalorimeter.h b/Detector/Calo/include/Detector/Calo/DeCalorimeter.h index 2c5bfb5b75..9700914fa7 100644 --- a/Detector/Calo/include/Detector/Calo/DeCalorimeter.h +++ b/Detector/Calo/include/Detector/Calo/DeCalorimeter.h @@ -240,6 +240,7 @@ namespace LHCb::Detector::Calo { double gainError() const { return this->access()->gainError; } double getCalibration( const CellID& ID ) const { return this->access()->cells[ID].calibration(); } + double getGamma( const CellID& ID ) const { return this->access()->cells[ID].Gamma(); } // for simulation only int zSupMethod() const { return this->access()->zSupMethod; } diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index d48128bbed..a0fbdc75dc 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -682,6 +682,30 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: } dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Pileup offset added for %d channel(s)", countPU ); } + + //---------------------------------------------- + // ** Gamma for ECAL energy + //---------------------------------------------- + if ( isEcal ) { + const auto& gammas = ctxt.condition( hash_key( de, "Gammas" ), true ).get(); + auto cellsGammas = gammas["data"].get>>(); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); + int countGammas = 0; + for ( auto& cellGammas : cellsGammas ) { + double cell = cellGammas[0]; + double gamma = cellGammas[1]; + LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); + id.setCalo( index ); + if ( cells[id].valid() ) { + cells[id].setGamma( gamma ); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter","Added gamma for channel %s : gamma = %f", id.asString().c_str(), gamma ); + } else { + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", id.asString().c_str() ); + } + countGammas++; + } + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); + } bool nominal = false; int countGain = 0; diff --git a/compact/components/ECAL/2024-v00.00/conditions.xml b/compact/components/ECAL/2024-v00.00/conditions.xml index e1fb242e9c..78ec6a1609 100644 --- a/compact/components/ECAL/2024-v00.00/conditions.xml +++ b/compact/components/ECAL/2024-v00.00/conditions.xml @@ -23,6 +23,7 @@ + diff --git a/compact/components/ECAL/trunk/conditions.xml b/compact/components/ECAL/trunk/conditions.xml index e1fb242e9c..dc5ccf0262 100644 --- a/compact/components/ECAL/trunk/conditions.xml +++ b/compact/components/ECAL/trunk/conditions.xml @@ -23,6 +23,7 @@ + diff --git a/tests/ConditionsIOV/.schema.json b/tests/ConditionsIOV/.schema.json index feba4bb564..8c6fc0c82e 100644 --- a/tests/ConditionsIOV/.schema.json +++ b/tests/ConditionsIOV/.schema.json @@ -9,7 +9,8 @@ "LEDReference", "PileUpOffset", "Quality", - "Reco" + "Reco", + "Gammas" ], "Conditions/Ecal/ReadoutConf.yml": [ "Hardware", diff --git a/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 b/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 index bb1ed13181..81bc95136d 100644 --- a/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 +++ b/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 @@ -12083,3 +12083,6 @@ Quality: size: 2 Reco: ZShowerMax: -282.0 +Gammas: + data: [] + size: 2 \ No newline at end of file -- GitLab From ca74e82302e4d85ab8fa6bb5a296c656351562c0 Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Wed, 23 Jul 2025 09:40:23 +0000 Subject: [PATCH 04/11] pre-commit fixes patch generated by https://gitlab.cern.ch/lhcb/Detector/-/jobs/59173347 --- Detector/Calo/src/DeCalorimeter.cpp | 20 ++++++++++--------- .../Conditions/Ecal/Calibration.yml/0 | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index a0fbdc75dc..d22b4d9220 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -682,25 +682,27 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: } dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Pileup offset added for %d channel(s)", countPU ); } - + //---------------------------------------------- // ** Gamma for ECAL energy //---------------------------------------------- if ( isEcal ) { - const auto& gammas = ctxt.condition( hash_key( de, "Gammas" ), true ).get(); - auto cellsGammas = gammas["data"].get>>(); + const auto& gammas = ctxt.condition( hash_key( de, "Gammas" ), true ).get(); + auto cellsGammas = gammas["data"].get>>(); dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); - int countGammas = 0; + int countGammas = 0; for ( auto& cellGammas : cellsGammas ) { - double cell = cellGammas[0]; - double gamma = cellGammas[1]; - LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); + double cell = cellGammas[0]; + double gamma = cellGammas[1]; + LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); id.setCalo( index ); if ( cells[id].valid() ) { cells[id].setGamma( gamma ); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter","Added gamma for channel %s : gamma = %f", id.asString().c_str(), gamma ); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", + id.asString().c_str(), gamma ); } else { - dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", id.asString().c_str() ); + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", + id.asString().c_str() ); } countGammas++; } diff --git a/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 b/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 index 81bc95136d..f947db7a65 100644 --- a/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 +++ b/tests/ConditionsIOV/Conditions/Ecal/Calibration.yml/0 @@ -12085,4 +12085,4 @@ Reco: ZShowerMax: -282.0 Gammas: data: [] - size: 2 \ No newline at end of file + size: 2 -- GitLab From b5d4daefe2b999ab534b56bbf0ea44898d639de8 Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Wed, 23 Jul 2025 17:21:16 +0200 Subject: [PATCH 05/11] Add Gammas conditions check --- Detector/Calo/src/DeCalorimeter.cpp | 39 ++++++++++++++++------------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index d22b4d9220..b28c5ea748 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -687,26 +687,29 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: // ** Gamma for ECAL energy //---------------------------------------------- if ( isEcal ) { - const auto& gammas = ctxt.condition( hash_key( de, "Gammas" ), true ).get(); - auto cellsGammas = gammas["data"].get>>(); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); - int countGammas = 0; - for ( auto& cellGammas : cellsGammas ) { - double cell = cellGammas[0]; - double gamma = cellGammas[1]; - LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); - id.setCalo( index ); - if ( cells[id].valid() ) { - cells[id].setGamma( gamma ); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", - id.asString().c_str(), gamma ); - } else { - dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", - id.asString().c_str() ); + auto condgammas = ctxt.condition( hash_key( de, "Gammas" ), false ); + if ( condgammas.isValid() ) { + const auto& gammas = condgammas.get(); + auto cellsGammas = gammas["data"].get>>(); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); + int countGammas = 0; + for ( auto& cellGammas : cellsGammas ) { + double cell = cellGammas[0]; + double gamma = cellGammas[1]; + LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); + id.setCalo( index ); + if ( cells[id].valid() ) { + cells[id].setGamma( gamma ); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", + id.asString().c_str(), gamma ); + } else { + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", + id.asString().c_str() ); + } + countGammas++; } - countGammas++; + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); } - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); } bool nominal = false; -- GitLab From 868073e2dafce847b37517bceb2e8aa01d02604e Mon Sep 17 00:00:00 2001 From: Gitlab CI Date: Wed, 23 Jul 2025 15:22:09 +0000 Subject: [PATCH 06/11] pre-commit fixes patch generated by https://gitlab.cern.ch/lhcb/Detector/-/jobs/59196042 --- Detector/Calo/src/DeCalorimeter.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index b28c5ea748..3748f35e88 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -689,24 +689,24 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: if ( isEcal ) { auto condgammas = ctxt.condition( hash_key( de, "Gammas" ), false ); if ( condgammas.isValid() ) { - const auto& gammas = condgammas.get(); + const auto& gammas = condgammas.get(); auto cellsGammas = gammas["data"].get>>(); dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); int countGammas = 0; for ( auto& cellGammas : cellsGammas ) { - double cell = cellGammas[0]; - double gamma = cellGammas[1]; - LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); - id.setCalo( index ); - if ( cells[id].valid() ) { - cells[id].setGamma( gamma ); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", - id.asString().c_str(), gamma ); - } else { - dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", - id.asString().c_str() ); - } - countGammas++; + double cell = cellGammas[0]; + double gamma = cellGammas[1]; + LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); + id.setCalo( index ); + if ( cells[id].valid() ) { + cells[id].setGamma( gamma ); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", + id.asString().c_str(), gamma ); + } else { + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", + id.asString().c_str() ); + } + countGammas++; } dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); } -- GitLab From e5b5a13d9e78a3bc0aea3ab016a6defb7bf002ea Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Wed, 23 Jul 2025 17:41:00 +0200 Subject: [PATCH 07/11] Remove changes in compact/components/ECAL/2024-v00.00/conditions.xml --- compact/components/ECAL/2024-v00.00/conditions.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/compact/components/ECAL/2024-v00.00/conditions.xml b/compact/components/ECAL/2024-v00.00/conditions.xml index 78ec6a1609..e1fb242e9c 100644 --- a/compact/components/ECAL/2024-v00.00/conditions.xml +++ b/compact/components/ECAL/2024-v00.00/conditions.xml @@ -23,7 +23,6 @@ - -- GitLab From c4fc143348e669f78dbb309129f411f45cd47578 Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Wed, 23 Jul 2025 17:59:48 +0200 Subject: [PATCH 08/11] Remove changes in compact/components/ECAL/trunk/conditions.xml --- compact/components/ECAL/trunk/conditions.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/compact/components/ECAL/trunk/conditions.xml b/compact/components/ECAL/trunk/conditions.xml index dc5ccf0262..e1fb242e9c 100644 --- a/compact/components/ECAL/trunk/conditions.xml +++ b/compact/components/ECAL/trunk/conditions.xml @@ -23,7 +23,6 @@ - -- GitLab From 691f6f0535ac5b0b6ea807b2939956657985b923 Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Wed, 23 Jul 2025 16:01:02 +0000 Subject: [PATCH 09/11] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Maarten Van Veghel --- Detector/Calo/src/DeCalorimeter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index 3748f35e88..30e9d7249f 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -709,6 +709,8 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: countGammas++; } dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); + } else { + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Failed to find 'Gammas' condition" ); } } -- GitLab From 98cd2e2f0e42a3e103d01e15457a9249679d7ad5 Mon Sep 17 00:00:00 2001 From: Jean-Francois Marchand Date: Thu, 31 Jul 2025 16:04:42 +0200 Subject: [PATCH 10/11] Add Gammas to compact/components/ECAL/2024-v00.00/conditions.xml --- compact/components/ECAL/2024-v00.00/conditions.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/compact/components/ECAL/2024-v00.00/conditions.xml b/compact/components/ECAL/2024-v00.00/conditions.xml index e1fb242e9c..47133a9247 100644 --- a/compact/components/ECAL/2024-v00.00/conditions.xml +++ b/compact/components/ECAL/2024-v00.00/conditions.xml @@ -18,6 +18,7 @@ + -- GitLab From e07e931a19ff3f3caafb5f2654907dcf38ad15da Mon Sep 17 00:00:00 2001 From: Rosen Matev Date: Thu, 7 Aug 2025 14:14:33 +0200 Subject: [PATCH 11/11] Make Gammas condition optional --- Detector/Calo/src/DeCalorimeter.cpp | 46 ++++++++++--------- .../ECAL/2024-v00.00/conditions.xml | 2 +- compact/components/ECAL/trunk/conditions.xml | 1 + 3 files changed, 27 insertions(+), 22 deletions(-) diff --git a/Detector/Calo/src/DeCalorimeter.cpp b/Detector/Calo/src/DeCalorimeter.cpp index 30e9d7249f..6b015f070a 100644 --- a/Detector/Calo/src/DeCalorimeter.cpp +++ b/Detector/Calo/src/DeCalorimeter.cpp @@ -688,29 +688,33 @@ detail::DeCaloObject::DeCaloObject( dd4hep::DetElement const& de, dd4hep::cond:: //---------------------------------------------- if ( isEcal ) { auto condgammas = ctxt.condition( hash_key( de, "Gammas" ), false ); - if ( condgammas.isValid() ) { - const auto& gammas = condgammas.get(); - auto cellsGammas = gammas["data"].get>>(); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); - int countGammas = 0; - for ( auto& cellGammas : cellsGammas ) { - double cell = cellGammas[0]; - double gamma = cellGammas[1]; - LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); - id.setCalo( index ); - if ( cells[id].valid() ) { - cells[id].setGamma( gamma ); - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", - id.asString().c_str(), gamma ); - } else { - dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", - id.asString().c_str() ); + if ( !condgammas.isValid() ) { + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Condition 'Gammas' is not defined, assuming 0.0" ); + } else { + const auto& gammas = condgammas.get(); + if ( gammas.is_null() ) { + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Condition 'Gammas' is null, assuming 0.0" ); + } else { + auto cellsGammas = gammas["data"].get>>(); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gammas for ECAL energy" ); + int countGammas = 0; + for ( auto& cellGammas : cellsGammas ) { + double cell = cellGammas[0]; + double gamma = cellGammas[1]; + LHCb::Detector::Calo::CellID id = LHCb::Detector::Calo::CellID( (int)cell ); + id.setCalo( index ); + if ( cells[id].valid() ) { + cells[id].setGamma( gamma ); + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Added gamma for channel %s : gamma = %f", + id.asString().c_str(), gamma ); + } else { + dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Trying to add gamma on non-valid channel : %s", + id.asString().c_str() ); + } + countGammas++; } - countGammas++; + dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); } - dd4hep::printout( dd4hep::DEBUG, "DeCalorimeter", "Gamma added for %d channel(s)", countGammas ); - } else { - dd4hep::printout( dd4hep::WARNING, "DeCalorimeter", "Failed to find 'Gammas' condition" ); } } diff --git a/compact/components/ECAL/2024-v00.00/conditions.xml b/compact/components/ECAL/2024-v00.00/conditions.xml index 47133a9247..5a0f267734 100644 --- a/compact/components/ECAL/2024-v00.00/conditions.xml +++ b/compact/components/ECAL/2024-v00.00/conditions.xml @@ -18,7 +18,7 @@ - + diff --git a/compact/components/ECAL/trunk/conditions.xml b/compact/components/ECAL/trunk/conditions.xml index e1fb242e9c..5a0f267734 100644 --- a/compact/components/ECAL/trunk/conditions.xml +++ b/compact/components/ECAL/trunk/conditions.xml @@ -18,6 +18,7 @@ + -- GitLab