Skip to content

Commit 45be126

Browse files
committed
solved whitespace error
1 parent 91503be commit 45be126

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

PWGLF/Tasks/Resonances/kstarqa.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1705,12 +1705,12 @@ struct Kstarqa {
17051705
// void processGen(aod::McCollision const& mcCollision, aod::McParticles const& mcParticles, const soa::SmallGroups<EventCandidatesMC>& collisions)
17061706
{
17071707
rEventSelection.fill(HIST("eventsCheckGen"), 0.5);
1708-
1708+
17091709
if (configGp.isApplyMCGenVz && std::abs(mcCollision.posZ()) > configGp.cutzvertex) {
17101710
return;
17111711
}
17121712
rEventSelection.fill(HIST("eventsCheckGen"), 1.5);
1713-
1713+
17141714
if (configGp.isINELgt0Gen && !mcCollision.isInelGt0()) {
17151715
return;
17161716
}
@@ -2022,23 +2022,23 @@ struct Kstarqa {
20222022
void processRec(EventCandidatesMC::iterator const& collision, TrackCandidatesMC const& tracks, aod::McParticles const&, EventMCGenerated const&)
20232023
{
20242024
rEventSelection.fill(HIST("eventsCheckRec"), 0.5);
2025-
2025+
20262026
if (!collision.has_mcCollision()) {
20272027
return;
20282028
}
20292029
rEventSelection.fill(HIST("eventsCheckRec"), 1.5);
2030-
2030+
20312031
double multiplicityRec = -1.0;
20322032
// multiplicityRec = collision.mcCollision_as<EventMCGenerated>().centFT0M();
20332033
const auto& mcCollisionRec = collision.mcCollision_as<EventMCGenerated>();
20342034
multiplicityRec = mcCollisionRec.centFT0M();
2035-
2035+
20362036
if (configGp.isINELgt0 && !collision.isInelGt0()) {
20372037
return;
20382038
}
20392039
rEventSelection.fill(HIST("eventsCheckRec"), 2.5);
20402040
// multiplicity = collision.centFT0M();
2041-
2041+
20422042
if (cSelectMultEstimator == kFT0M) {
20432043
multiplicity = collision.centFT0M();
20442044
} else if (cSelectMultEstimator == kFT0A) {
@@ -2050,10 +2050,10 @@ struct Kstarqa {
20502050
} else {
20512051
multiplicity = collision.centFT0M(); // default
20522052
}
2053-
2053+
20542054
hInvMass.fill(HIST("hAllRecCollisions"), multiplicity);
20552055
hInvMass.fill(HIST("hAllRecCollisionsCalib"), multiplicityRec);
2056-
2056+
20572057
if (!selectionEvent(collision, true)) { // fill MC event cut histogram
20582058
return;
20592059
}

0 commit comments

Comments
 (0)