Skip to content

Commit b055e0c

Browse files
FIT: MC digitizer settings for 2024 (#1962)
Temporary gain settings for 2024 MC. Will be reverted once we can take this from CCDB.
1 parent 77d6244 commit b055e0c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

MC/bin/o2dpg_sim_config.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,21 @@ def add(cfg, flatconfig):
9090
if args.col == "PbPb" or (args.embedding and args.colBkg == "PbPb"):
9191
add(config, {"ITSVertexerParam.lowMultBeamDistCut": "0."})
9292

93-
# FIT digitizer settings for 2023 PbPb
93+
# FIT digitizer settings
94+
# 2023 PbPb
9495
if 543437 <= int(args.run) and int(args.run) <= 545367:
9596
add(config, {"FT0DigParam.mMip_in_V": "7", "FT0DigParam.mMV_2_Nchannels": "2", "FT0DigParam.mMV_2_NchannelsInverse": "0.5"})
9697
add(config, {"FV0DigParam.adcChannelsPerMip": "4"})
98+
# 2024
99+
# first and last run of 2024
100+
if 546088 <= int(args.run) and int(args.run) <= 560623:
101+
# 14 ADC channels / MIP for FT0
102+
add(config, {"FT0DigParam.mMip_in_V": "7", "FT0DigParam.mMV_2_Nchannels": "2", "FT0DigParam.mMV_2_NchannelsInverse": "0.5"})
103+
# 15 ADC channels / MIP for FV0
104+
add(config, {"FV0DigParam.adcChannelsPerMip": "15"})
105+
if COLTYPEIR == "PbPb":
106+
# 4 ADC channels / MIP
107+
add(config, {"FV0DigParam.adcChannelsPerMip": "4"})
97108

98109
return config
99110

0 commit comments

Comments
 (0)