Skip to content

Commit e322fb2

Browse files
authored
Set proper settings for ITS vertexer
1 parent 556f560 commit e322fb2

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

MC/bin/o2dpg_sim_config.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ def add(cfg, flatconfig):
2828
if 302000 <= int(args.run) and int(args.run) < 309999:
2929
add(config, {"ITSAlpideParam.roFrameLengthInBC" : 198})
3030
# ITS reco settings
31-
add(config, {"ITSVertexerParam.pairCut": 0.0317563,
31+
add(config, {"ITSVertexerParam.phiCut": 0.4,
32+
"ITSVertexerParam.tanLambdaCut": 0.17,
33+
"ITSVertexerParam.pairCut": 0.0317563,
3234
"ITSVertexerParam.clusterCut": 0.6640964,
3335
"ITSVertexerParam.coarseZWindow": 0.2049018,
3436
"ITSVertexerParam.seedDedupZCut": 0.0711793,
@@ -96,10 +98,6 @@ def add(cfg, flatconfig):
9698
if args.fwdmatching_cut_4_param == True:
9799
add(config, {"FwdMatching.cutFcn" : "cut3SigmaXYAngles"})
98100

99-
# deal with larger combinatorics
100-
if args.col == "PbPb" or (args.embedding and args.colBkg == "PbPb"):
101-
add(config, {"ITSVertexerParam.lowMultBeamDistCut": "0."})
102-
103101
# FIT digitizer settings
104102
# 2023 PbPb
105103
if 543437 <= int(args.run) and int(args.run) <= 545367:
@@ -244,4 +242,4 @@ def overwrite_config(config, mainkey, subkey, value):
244242
if mainkey not in config:
245243
# Initialize the main key in the dictionary if it does not already exist
246244
config[mainkey] = {}
247-
config[mainkey][subkey] = value
245+
config[mainkey][subkey] = value

0 commit comments

Comments
 (0)