- Jan 06, 2025
-
-
Duc Ta authored
-
Jean-Baptiste De Vivie De Regie authored
DerivationFrameworkBPhys+xAODBPhys: Lock decorations from Select_onia2mumu. See merge request !76956
-
DerivationFrameworkBPhys: Lock decorations from Select_onia2mumu. Need to make sure that decorations are locked after they are produced. See ATLASRECTS-8008.
-
Jean-Baptiste De Vivie De Regie authored
VrtSecInclusive: Don't try to catch exceptions. See merge request !76960
-
VrtSecInclusive: Don't try to catch exceptions. That just hides problems and makes them more difficult to diagnose.
-
Jean-Baptiste De Vivie De Regie authored
FlavorTagDiscriminants: Missed reporting some decorations. See merge request !76958
-
FlavorTagDiscriminants: Missed reporting some decorations. Fixing unlocked decorations. See ATLASRECTS-8008.
-
Jean-Baptiste De Vivie De Regie authored
MuonCondAlg: Protect against unknown MDT station. See merge request !76925
-
MuonCondAlg: Protect against unknown MDT station. In MuonAlignmentCondAlg, skip lines from the JSON blob that don't translate to a valid identifier. In the test_bulkProcessing_splashes art test, we were getting EIS stations from the JSON blob, while they didn't exist in the detector description. The code was trying to convert the resulting (invalid) identifier to a string for a diagnostic. Recent Identifier changes resulted in this crashing with an out-of-bounds exception. Now handle this by printing a warning. Note that this test was already printing warnings like:: ``` MGM::MuonDetectorManager 0 0 WARNING BLinePar with AmdbId Muon B-Line deformation AMDB id (name,eta,phi,job)=(EIL,-3,2,0), tube bow in plane bz=0.032, tube bow out of plane bp=0, bn=0, cross plate sage out of plane sp=0, sn=0, twist tw=0, parallelogram pg=0, trapezoid tz=0, global expansion eg=0.085, local expansion ep=0.002, en=-0.001 *** No MuonStation found PLEASE CHECK FOR possible MISMATCHES between alignment constants from COOL and Geometry Layout in use ``` so there may still be a problem with the conditions tag. Regardless, though, we shouldn't die with an out-of-bounds exception.
-
Jean-Baptiste De Vivie De Regie authored
ZdcAnalysis: Fix compiling with clang. See merge request !76964
-
ZdcAnalysis: Fix compiling with clang. Avoid narrowing conversions in initialization. Binding references to temporaries in range-for.
-
Jean-Baptiste De Vivie De Regie authored
DerivationFrameworkPhys+DerivationFrameworkLLP: Avoid overwriting decorations. See merge request !76968
-
DerivationFrameworkPhys: Avoid overwriting decorations. LLP1 was configuring IsoCloseByCorrectionAlg with non-LRT containers as well as LRT ones. But PHYS also configures this algorithm with non-LRT containers, so if they were used together, then decorations would get overwritten. This causes problems then when we want to ensure that the decorations get locked. Split the configuration here into two algorithms, the first being identical to PHYS and the second with the LRT containers. When PHYS and LLP1 are used together, then then first algorithm will be merged with the one from PHYS and we avoid overwrites. This can result in changes in the decorations for non-LRT containers in the case that PHYS and LLP1 are used together, due to the differing track selectors that are used.
-
- Jan 02, 2025
-
-
Jean-Baptiste De Vivie De Regie authored
CITEST for Global Monitoring See merge request !75920
-
CITEST for Global Monitoring
-
- Dec 20, 2024
-
-
Jiri Masik authored
ATR-30631: MET MC Menu Legacy cleanup See merge request !76922
-
Dvij Mankad authored
-
Dvij Mankad authored
-
Jiri Masik authored
ATR-30632: Calib and Streamers MC Menu Legacy cleanup See merge request !76823
-
ATR-30632: Calib and Streamers MC Menu Legacy cleanup
-
Jiri Masik authored
LArSuperCellMon/LArRawSCDataReadingConfig scheduling ByteStreamCnvSvc at wrong moments. See merge request !76902
-
LArSuperCellMon/LArRawSCDataReadingConfig scheduling ByteStreamCnvSvc at wrong moments.
-
Jean-Baptiste De Vivie De Regie authored
Bugfix for BIS78 RPC Bytestream converter See merge request !76908
-
Bugfix for BIS78 RPC Bytestream converter
-
Jean-Baptiste De Vivie De Regie authored
Split cfg of LAr HV Cabling into separate config-file See merge request !76873
-
Split cfg of LAr HV Cabling into separate config-file
-
- Dec 19, 2024
-
-
Projects: Update to LCG_106b_ATLAS_1, atlasexternals 2.1.16.3 and tdaq/tdaq-common 12-00-00 Update the 24.0 branch to LCG_106b_ATLAS_1, atlasexternals 2.1.16.3 and tdaq/tdaq-common 12-00-00. The most significant updates in LCG_106b (SPI-2678) are ROOT 6.32/08 and xrootd 5.7.2. The other package updates are listed at: https://lcginfo.cern.ch/compare_releases/None/106b/106a The layer LCG_106b_ATLAS_1 is identical to LCG_106a_ATLAS_7 apart from the LCG_106b updates.
-
Jiri Masik authored
ATR-30401 - A Prescaled CR Sideband for ATR-28563 A Phase I L1Topo LLP Trigger See merge request !76833
-
Revert "removed unnecessary per-bit addvariable" This reverts commit da22d1e2.
-
Jiri Masik authored
ATR-30628 ATR-30627 request clean-up for legacy chains See merge request !76834
-
Jiri Masik authored
Anomaly trigger dummy implementation See merge request !76182
-
Anomaly trigger implementation Anomaly trigger implementation update naming based on recommendation
-
Jean-Baptiste De Vivie De Regie authored
ZdcMonitoring: Fix clang warnings. See merge request !76860
-
ZdcMonitoring: Fix clang warnings. Binding temporaries to references in range-for.
-
Jean-Baptiste De Vivie De Regie authored
SCT_Digitization: Fix out-of-bounds vector writes. See merge request !76859
-
SCT_Digitization: Fix out-of-bounds vector writes. reserve/resize mixup
-
Jean-Baptiste De Vivie De Regie authored
TileConditions: Fix array bounds checking. See merge request !76856
-
TileConditions: Fix array bounds checking. Fix off-by-one errors in array bounds checks. Solves crashes seen when building with -D_GLIBCXX_ASSERTIONS.