Skip to content

Commit 4483cfc

Browse files
authored
Add files via upload
1 parent 2b37cae commit 4483cfc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGLF/Tasks/Strangeness/lambdaJetpolarization.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,15 +2527,15 @@ struct LambdaJetpolarizationMCcount {
25272527
}
25282528

25292529
Configurable<float> rapidityMCcut{"rapidityMCcut", 0.5, "rapidity cut MC count"};
2530-
Configurable<bool> event_sel8_selection{"event_sel8_selection", true, "event selection MC count post sel8 cut"};
2531-
Configurable<bool> event_posZ_selection{"event_posZ_selection", true, "event selection MC count post poZ cut"};
2530+
Configurable<bool> event_Sel8_selection{"event_Sel8_selection", true, "event selection MC count post sel8 cut"};
2531+
Configurable<bool> event_PosZ_selection{"event_PosZ_selection", true, "event selection MC count post poZ cut"};
25322532

25332533
void processMC(aod::McCollision const& mcCollision, aod::McParticles const& mcParticles, const soa::SmallGroups<o2::soa::Join<o2::aod::Collisions, o2::aod::McCollisionLabels, o2::aod::EvSels>>& collisions)
25342534
{
25352535
std::vector<int64_t> SelectedEvents(collisions.size());
25362536
int nevts = 0;
25372537
for (const auto& collision : collisions) {
2538-
if (event_sel8_selection && !collision.sel8()) {
2538+
if (event_Sel8_selection && !collision.sel8()) {
25392539
continue;
25402540
}
25412541
SelectedEvents[nevts++] = collision.mcCollision_as<aod::McCollisions>().globalIndex();
@@ -2549,7 +2549,7 @@ struct LambdaJetpolarizationMCcount {
25492549
return;
25502550
}
25512551
registry.fill(HIST("hEventSelection"), 1.5); // hSelAndRecoMcCollCounter
2552-
if (event_posZ_selection && abs(mcCollision.posZ()) > 10.f) { // 10cm
2552+
if (event_PosZ_selection && abs(mcCollision.posZ()) > 10.f) { // 10cm
25532553
return;
25542554
}
25552555
registry.fill(HIST("hEventSelection"), 2.5);

0 commit comments

Comments
 (0)