Skip to content

Commit 78bb47a

Browse files
committed
Removing old centrality estimators from derived data consumer
1 parent 44c227b commit 78bb47a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

PWGLF/Tasks/Strangeness/lambdaJetPolarizationIonsDerived.cxx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ constexpr double polPrefactorAntiLambda = 3.0/antiLambdaWeakDecayConstant;
7070
enum CentEstimator {
7171
kCentFT0C = 0,
7272
kCentFT0M,
73-
kCentFT0CVariant1,
74-
kCentMFT,
75-
kCentNGlobal,
7673
kCentFV0A
7774
};
7875

@@ -184,7 +181,7 @@ struct lambdajetpolarizationionsderived {
184181
Configurable<bool> doPPAnalysis{"doPPAnalysis", false, "if in pp, set to true. Default is HI"};
185182

186183
// Centrality:
187-
Configurable<int> centralityEstimator{"centralityEstimator", kCentFT0M, "Run 3 centrality estimator (0:CentFT0C, 1:CentFT0M, 2:CentFT0CVariant1, 3:CentMFT, 4:CentNGlobal, 5:CentFV0A)"}; // Default is FT0M
184+
Configurable<int> centralityEstimator{"centralityEstimator", kCentFT0M, "Run 3 centrality estimator (0:CentFT0C, 1:CentFT0M, 2:CentFV0A)"}; // Default is FT0M
188185

189186
// QAs that purposefully break the analysis
190187
// -- All of these tests should give us zero signal if the source is truly Lambda Polarization from vortices
@@ -415,9 +412,6 @@ struct lambdajetpolarizationionsderived {
415412
{
416413
if (centralityEstimator == kCentFT0M) return collision.centFT0M();
417414
else if (centralityEstimator == kCentFT0C) return collision.centFT0C();
418-
else if (centralityEstimator == kCentFT0CVariant1) return collision.centFT0CVariant1();
419-
else if (centralityEstimator == kCentMFT) return collision.centMFT();
420-
else if (centralityEstimator == kCentNGlobal) return collision.centNGlobal();
421415
else if (centralityEstimator == kCentFV0A) return collision.centFV0A();
422416
return -1.f;
423417
}

0 commit comments

Comments
 (0)