Skip to content

Commit e26193e

Browse files
authored
Merge pull request #45105 from eyigitba/EMTF_pcLUT2024_May24
EMTF emulator support for 2024 primitive converison LUTs
2 parents 5a6aa95 + f6ec135 commit e26193e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

L1Trigger/L1TMuonEndCap/src/ConditionHelper.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,11 @@ unsigned int ConditionHelper::get_pc_lut_version() const {
8787
} else if (params_->firmwareVersion_ <
8888
1687686338) { // Corresponds to June 25, 2023. The firmware was deployed on June 26, 2023.
8989
return 3; // Starting October 6, 2022 with run 359924 (data only, not in MC)
90+
} else if (params_->firmwareVersion_ <
91+
1716282790) { // Corresponds to May 21, 2024. The firmware was deployed on May 28, 2024.
92+
return 4; // Starting July 1, 2023 with run 369675 (data only, not in MC)
9093
} else {
91-
return 4; // Starting July 1, 2023 with run 369675 (data only, not in MC)
94+
return 5; // Starting May 28, 2024 with run 381316 (data only, not in MC)
9295
}
9396
}
9497

L1Trigger/L1TMuonEndCap/src/SectorProcessorLUT.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ void SectorProcessorLUT::read(bool pc_lut_data, int pc_lut_version) {
2929
coord_lut_dir = "ph_lut_Run3_2022_data"; // Update in October 2022 from Run 3 2022 alignment, data only
3030
else if (pc_lut_version == 4 && pc_lut_data)
3131
coord_lut_dir = "ph_lut_Run3_2023_data"; // Update in June 2023 from Run 3 2023 alignment, data only
32+
else if (pc_lut_version == 5 && pc_lut_data)
33+
coord_lut_dir = "ph_lut_Run3_2024_data"; // Update in May 2024 from Run 3 2024 alignment, data only
3234
else if (pc_lut_version >= 2)
3335
coord_lut_dir = "ph_lut_v2"; // MC still uses ideal CMS aligment
3436
else if (pc_lut_version == -1 && pc_lut_data)

0 commit comments

Comments
 (0)