Skip to content
Open
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 @@ -81,9 +81,9 @@ struct TrackingParameters {
bool DropTFUponFailure = false;

// Selections on tracks sharing clusters
float SharedClusterMaxDeltaPhi = 0.05f; // For tracks sharing clusters, maximum allowed delta phi at the cluster position
float SharedClusterMaxDeltaEta = 0.03f; // For tracks sharing clusters, maximum allowed delta eta at the cluster position
bool SharedClusterOppositeSign = false; // For tracks sharing clusters, require opposite sign of the tracklets
float SharedClusterMaxDeltaPhi = 0.05f; // For tracks sharing clusters, maximum allowed delta phi at the cluster position
float SharedClusterMaxDeltaEta = 0.03f; // For tracks sharing clusters, maximum allowed delta eta at the cluster position
bool SharedClusterOppositeSign = false; // For tracks sharing clusters, require opposite sign of the tracklets
};

struct VertexingParameters {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ struct TrackerParamConfig : public o2::conf::ConfigurableParamHelper<TrackerPara
bool allowSharingFirstCluster = false; // allow first cluster sharing among tracks

// Selections on tracks sharing clusters
float sharedClusterMaxDeltaPhi = 0.05f; // Maximum allowed delta phi at the cluster position
float sharedClusterMaxDeltaEta = 0.03f; // Maximum allowed delta eta at the cluster position
bool sharedClusterOppositeSign = false; // Require opposite sign of the tracklets
float sharedClusterMaxDeltaPhi = 0.05f; // Maximum allowed delta phi at the cluster position
float sharedClusterMaxDeltaEta = 0.03f; // Maximum allowed delta eta at the cluster position
bool sharedClusterOppositeSign = false; // Require opposite sign of the tracklets

O2ParamDef(TrackerParamConfig, "ITSCATrackerParam");
};
Expand Down