Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ struct VertexerParamConfig : public o2::conf::ConfigurableParamHelper<VertexerPa
int nIterations = 1; // Number of vertexing passes to perform.
int vertPerRofThreshold = 0; // Maximum number of vertices per ROF to trigger second a iteration.

// geometrical cuts for tracklet selection
// geometrical cuts for tracklet selection for Pb-Pb
float zCut = 0.002f;
float phiCut = 0.4f;
float phiCut = 0.005f;
float pairCut = 0.0211211f;
float clusterCut = 0.4275412f;
float coarseZWindow = 0.6521316f;
Expand All @@ -36,7 +36,7 @@ struct VertexerParamConfig : public o2::conf::ConfigurableParamHelper<VertexerPa
float duplicateZCut = 0.7985643f;
float finalSelectionZCut = 0.2932624f;
float duplicateDistance2Cut = 0.0223001f;
float tanLambdaCut = 0.17f; // tanLambda = deltaZ/deltaR
float tanLambdaCut = 0.002f; // tanLambda = deltaZ/deltaR
float vertNsigmaCut = 5.8762583f; // N sigma cut for vertex XY
float vertRadiusSigma = 0.0343575f; // sigma of vertex XY
float trackletSigma = 0.0143798f; // tracklet to vertex sigma
Expand Down
2 changes: 1 addition & 1 deletion prodtests/full-system-test/dpl-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ EVE_OPT=" --jsons-folder $EDJSONS_DIR"

# ITS vertexing settings
if [[ $BEAMTYPE == "pp" || $LIGHTNUCLEI == "1" ]]; then
ITS_CONFIG_KEY+=";ITSVertexerParam.pairCut=0.0317563;ITSVertexerParam.clusterCut=0.6640964;ITSVertexerParam.coarseZWindow=0.2049018;ITSVertexerParam.seedDedupZCut=0.0711793;ITSVertexerParam.refitDedupZCut=0.0680009;ITSVertexerParam.duplicateZCut=0.1582193;ITSVertexerParam.finalSelectionZCut=0.1081465;ITSVertexerParam.duplicateDistance2Cut=0.0117033;ITSVertexerParam.clusterContributorsCut=2;ITSVertexerParam.seedMemberRadiusZ=0;ITSVertexerParam.vertNsigmaCut=4.0;ITSVertexerParam.vertRadiusSigma=0.0452309;ITSVertexerParam.trackletSigma=0.0025941;ITSVertexerParam.suppressLowMultDebris=0;"
ITS_CONFIG_KEY+="ITSVertexerParam.phiCut=0.4;ITSVertexerParam.tanLambdaCut=0.17;ITSVertexerParam.pairCut=0.0317563;ITSVertexerParam.clusterCut=0.6640964;ITSVertexerParam.coarseZWindow=0.2049018;ITSVertexerParam.seedDedupZCut=0.0711793;ITSVertexerParam.refitDedupZCut=0.0680009;ITSVertexerParam.duplicateZCut=0.1582193;ITSVertexerParam.finalSelectionZCut=0.1081465;ITSVertexerParam.duplicateDistance2Cut=0.0117033;ITSVertexerParam.clusterContributorsCut=2;ITSVertexerParam.seedMemberRadiusZ=0;ITSVertexerParam.vertNsigmaCut=4.0;ITSVertexerParam.vertRadiusSigma=0.0452309;ITSVertexerParam.trackletSigma=0.0025941;ITSVertexerParam.suppressLowMultDebris=0;"
fi

if [[ $CTFINPUT != 1 ]]; then
Expand Down