From e322fb2b9c299afbbcb4dfed0f6e90604948979d Mon Sep 17 00:00:00 2001 From: Felix Schlepper Date: Thu, 16 Apr 2026 18:05:16 +0200 Subject: [PATCH] Set proper settings for ITS vertexer --- MC/bin/o2dpg_sim_config.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/MC/bin/o2dpg_sim_config.py b/MC/bin/o2dpg_sim_config.py index 86f5ee2e1..2958063b7 100755 --- a/MC/bin/o2dpg_sim_config.py +++ b/MC/bin/o2dpg_sim_config.py @@ -28,7 +28,9 @@ def add(cfg, flatconfig): if 302000 <= int(args.run) and int(args.run) < 309999: add(config, {"ITSAlpideParam.roFrameLengthInBC" : 198}) # ITS reco settings - add(config, {"ITSVertexerParam.pairCut": 0.0317563, + add(config, {"ITSVertexerParam.phiCut": 0.4, + "ITSVertexerParam.tanLambdaCut": 0.17, + "ITSVertexerParam.pairCut": 0.0317563, "ITSVertexerParam.clusterCut": 0.6640964, "ITSVertexerParam.coarseZWindow": 0.2049018, "ITSVertexerParam.seedDedupZCut": 0.0711793, @@ -96,10 +98,6 @@ def add(cfg, flatconfig): if args.fwdmatching_cut_4_param == True: add(config, {"FwdMatching.cutFcn" : "cut3SigmaXYAngles"}) - # deal with larger combinatorics - if args.col == "PbPb" or (args.embedding and args.colBkg == "PbPb"): - add(config, {"ITSVertexerParam.lowMultBeamDistCut": "0."}) - # FIT digitizer settings # 2023 PbPb if 543437 <= int(args.run) and int(args.run) <= 545367: @@ -244,4 +242,4 @@ def overwrite_config(config, mainkey, subkey, value): if mainkey not in config: # Initialize the main key in the dictionary if it does not already exist config[mainkey] = {} - config[mainkey][subkey] = value \ No newline at end of file + config[mainkey][subkey] = value