@@ -497,7 +497,7 @@ struct LFNucleiBATask {
497497 hSkim->GetXaxis ()->SetBinLabel (2 , " Skimmed events" );
498498
499499 if (enableCentrality) {
500- histos.add <TH2>(" event/eventSelection" , " eventSelection" , HistType::kTH2D , {{8 , -0.5 , 7 .5 }, {binsPercentile, " Centrality FT0M" }});
500+ histos.add <TH2>(" event/eventSelection" , " eventSelection" , HistType::kTH2D , {{11 , -0.5 , 10 .5 }, {binsPercentile, " Centrality FT0M" }});
501501 auto h2d = histos.get <TH2>(HIST (" event/eventSelection" ));
502502 if (skimmingOptions.applySkimming )
503503 h2d->GetXaxis ()->SetBinLabel (1 , " Skimmed events" );
@@ -511,8 +511,11 @@ struct LFNucleiBATask {
511511 h2d->GetXaxis ()->SetBinLabel (6 , " Sel8 cut" );
512512 h2d->GetXaxis ()->SetBinLabel (7 , " Z-vert Cut" );
513513 h2d->GetXaxis ()->SetBinLabel (8 , " Multiplicity cut" );
514+ h2d->GetXaxis ()->SetBinLabel (9 , " INEL" );
515+ h2d->GetXaxis ()->SetBinLabel (10 , " INEL > 0" );
516+ h2d->GetXaxis ()->SetBinLabel (11 , " INEL > 1" );
514517 } else {
515- histos.add <TH1>(" event/eventSelection" , " eventSelection" , HistType::kTH1D , {{8 , -0.5 , 7 .5 }});
518+ histos.add <TH1>(" event/eventSelection" , " eventSelection" , HistType::kTH1D , {{11 , -0.5 , 10 .5 }});
516519 auto h1d = histos.get <TH1>(HIST (" event/eventSelection" ));
517520 if (skimmingOptions.applySkimming )
518521 h1d->GetXaxis ()->SetBinLabel (1 , " Skimmed events" );
@@ -526,6 +529,9 @@ struct LFNucleiBATask {
526529 h1d->GetXaxis ()->SetBinLabel (6 , " Sel8 cut" );
527530 h1d->GetXaxis ()->SetBinLabel (7 , " Z-vert Cut" );
528531 h1d->GetXaxis ()->SetBinLabel (8 , " Multiplicity cut" );
532+ h1d->GetXaxis ()->SetBinLabel (9 , " INEL" );
533+ h1d->GetXaxis ()->SetBinLabel (10 , " INEL > 0" );
534+ h1d->GetXaxis ()->SetBinLabel (11 , " INEL > 1" );
529535 }
530536
531537 if (enableCentrality)
@@ -2405,10 +2411,26 @@ struct LFNucleiBATask {
24052411 if (enableCentrality && (centFT0M <= cfgMultCutLow || centFT0M > cfgMultCutHigh)) {
24062412 return ;
24072413 }
2408- if (enableCentrality)
2414+ if (enableCentrality) {
24092415 histos.fill (HIST (" event/eventSelection" ), 7 , centFT0M);
2410- else
2416+ histos.fill (HIST (" event/eventSelection" ), 8 , centFT0M);
2417+ } else {
24112418 histos.fill (HIST (" event/eventSelection" ), 7 );
2419+ histos.fill (HIST (" event/eventSelection" ), 8 );
2420+ }
2421+
2422+ if (event.isInelGt0 ()) {
2423+ if (enableCentrality)
2424+ histos.fill (HIST (" event/eventSelection" ), 9 , centFT0M);
2425+ else
2426+ histos.fill (HIST (" event/eventSelection" ), 9 );
2427+ }
2428+ if (event.isInelGt1 ()) {
2429+ if (enableCentrality)
2430+ histos.fill (HIST (" event/eventSelection" ), 10 , centFT0M);
2431+ else
2432+ histos.fill (HIST (" event/eventSelection" ), 10 );
2433+ }
24122434
24132435 float gamma = 0 ., massTOF = 0 ., massTOFhe = 0 ., massTOFantihe = 0 ., heTPCmomentum = 0 .f , antiheTPCmomentum = 0 .f , heP = 0 .f , antiheP = 0 .f , hePt = 0 .f , antihePt = 0 .f , antiDPt = 0 .f , DPt = 0 .f ;
24142436 bool isTritonTPCpid = false ;
@@ -6090,7 +6112,7 @@ struct LFNucleiBATask {
60906112 }
60916113 }
60926114
6093- using EventCandidates = soa::Join<aod::Collisions, aod::EvSels, aod::CentFT0Ms, aod::CentFV0As, aod::CentFT0Cs>;
6115+ using EventCandidates = soa::Join<aod::Collisions, aod::EvSels, aod::Mults, aod:: CentFT0Ms, aod::CentFV0As, aod::CentFT0Cs>;
60946116 using EventCandidatesMC = soa::Join<EventCandidates, aod::McCollisionLabels>;
60956117
60966118 using TrackCandidates0 = soa::Join<aod::Tracks, aod::TracksIU, aod::TracksExtra, aod::TracksDCA, aod::TrackSelection, aod::TrackSelectionExtension,
0 commit comments