Skip to content

Commit dc9e3bf

Browse files
committed
DPG: update FIT parameters for 2023 and 2024 data
1 parent 5b7fb46 commit dc9e3bf

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

MC/bin/o2dpg_sim_config.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,22 @@ def add(cfg, flatconfig):
9797
add(config, {"FwdMatching.cutFcn" : "cut3SigmaXYAngles"})
9898

9999
# FIT digitizer settings
100+
#2023 pp
101+
if 534125 <= int(args.run) and int(args.run) <= 543113:
102+
add(config, {"FV0DigParam.adcChannelsPerMip": "15"})
103+
if COLTYPEIR == "pp":
104+
# central and semicentral FT0 thresholds
105+
add(config, {"FT0DigParam.mtrg_central_trh": "40", "FT0DigParam.mtrg_semicentral_trh": "20"})
106+
# FV0 trigger settings
107+
add(config, {"FV0DigParam.NchannelsLevel": "2", "FV0DigParam.InnerChargeLevel": "4", "FV0DigParam.OuterChargeLevel": "4", "FV0DigParam.ChargeLevel": "8"})
100108
# 2023 PbPb
101109
if 543437 <= int(args.run) and int(args.run) <= 545367:
102110
add(config, {"FT0DigParam.mMip_in_V": "7", "FT0DigParam.mMV_2_Nchannels": "2", "FT0DigParam.mMV_2_NchannelsInverse": "0.5"})
103111
add(config, {"FV0DigParam.adcChannelsPerMip": "4"})
112+
# central and semicentral FT0 thresholds
113+
add(config, {"FT0DigParam.mtrg_central_trh": "1433", "FT0DigParam.mtrg_semicentral_trh": "35"})
114+
# FV0 trigger settings
115+
add(config, {"FV0DigParam.NchannelsLevel": "2", "FV0DigParam.InnerChargeLevel": "4", "FV0DigParam.OuterChargeLevel": "4", "FV0DigParam.ChargeLevel": "1080"})
104116
# 2024
105117
# first and last run of 2024
106118
if 546088 <= int(args.run) and int(args.run) <= 560623:
@@ -111,6 +123,15 @@ def add(cfg, flatconfig):
111123
if COLTYPEIR == "PbPb":
112124
# 4 ADC channels / MIP
113125
add(config, {"FV0DigParam.adcChannelsPerMip": "4"})
126+
# central and semicentral FT0 thresholds
127+
add(config, {"FT0DigParam.mtrg_central_trh": "1433", "FT0DigParam.mtrg_semicentral_trh": "35"})
128+
# FV0 trigger settings
129+
add(config, {"FV0DigParam.NchannelsLevel": "2", "FV0DigParam.InnerChargeLevel": "4", "FV0DigParam.OuterChargeLevel": "4", "FV0DigParam.ChargeLevel": "1080"})
130+
if COLTYPEIR == "pp":
131+
# central and semicentral FT0 thresholds
132+
add(config, {"FT0DigParam.mtrg_central_trh": "40", "FT0DigParam.mtrg_semicentral_trh": "20"})
133+
# FV0 trigger settings
134+
add(config, {"FV0DigParam.NchannelsLevel": "2", "FV0DigParam.InnerChargeLevel": "4", "FV0DigParam.OuterChargeLevel": "4", "FV0DigParam.ChargeLevel": "8"})
114135
# 2025
115136
# first and last run of 2025
116137
if 562260 <= int(args.run) and int(args.run) <= 568721:

0 commit comments

Comments
 (0)