Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
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 @@ -106,6 +106,7 @@ struct VertexingParameters {
float tanLambdaCut = 0.002f; // tanLambda = deltaZ/deltaR
float lowMultXYcut2 = 0.01f; // XY cut for low-multiplicity pile up
float baseBeamError = 0.005f;
float maxZPositionAllowed = 25.f;
int clusterContributorsCut = 16;
int maxTrackletsPerCluster = 2e3;
int phiSpan = -1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ struct VertexerParamConfig : public o2::conf::ConfigurableParamHelper<VertexerPa
float tanLambdaCut = 0.002f; // tanLambda = deltaZ/deltaR
float lowMultXYcut2 = 0.25f; // XY cut for low-multiplicity pile up
float baseBeamError = 0.005f;
float maxZPositionAllowed = 25.f; // 4x sZ of the beam
int clusterContributorsCut = 16;
int maxTrackletsPerCluster = 1e2;
int phiSpan = -1;
Expand Down
1 change: 1 addition & 0 deletions 1 Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ void Vertexer::getGlobalConfiguration()
verPar.histPairCut = vc.histPairCut;
verPar.tanLambdaCut = vc.tanLambdaCut;
verPar.lowMultXYcut2 = vc.lowMultXYcut2;
verPar.maxZPositionAllowed = vc.maxZPositionAllowed;
verPar.clusterContributorsCut = vc.clusterContributorsCut;
verPar.maxTrackletsPerCluster = vc.maxTrackletsPerCluster;
verPar.phiSpan = vc.phiSpan;
Expand Down
2 changes: 1 addition & 1 deletion 2 Detectors/ITSMFT/ITS/tracking/src/VertexerTraits.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ void VertexerTraits::computeVertices()
}
}
float rXY{std::hypot(mTimeFrame->getTrackletClusters(rofId)[iCluster].getVertex()[0], mTimeFrame->getTrackletClusters(rofId)[iCluster].getVertex()[1])};
if (rXY < 1.98) {
if (rXY < 1.98 && std::abs(mTimeFrame->getTrackletClusters(rofId)[iCluster].getVertex()[2]) < mVrtParams.maxZPositionAllowed) {
atLeastOneFound = true;
mVertices.emplace_back(mTimeFrame->getTrackletClusters(rofId)[iCluster].getVertex()[0],
mTimeFrame->getTrackletClusters(rofId)[iCluster].getVertex()[1],
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.