Skip to content

Commit 82bb54a

Browse files
committed
Fix names in correlatorLcScHadrons.cxx
1 parent c5e72f8 commit 82bb54a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

PWGHF/HFC/TableProducer/correlatorLcScHadrons.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ struct HfCorrelatorLcScHadrons {
532532
return true;
533533
}
534534

535-
template <bool isMcRec = false, typename CollType, typename V0, typename TrackType>
535+
template <bool IsMcRec = false, typename CollType, typename V0, typename TrackType>
536536
void fillV0Histograms(CollType const& collV0, V0 const& v0s, TrackType const&)
537537
{
538538
for (const auto& v0 : v0s) {
@@ -566,7 +566,7 @@ struct HfCorrelatorLcScHadrons {
566566
}
567567
}
568568
}
569-
if constexpr (isMcRec) {
569+
if constexpr (IsMcRec) {
570570
if (!v0.has_mcParticle() || !posTrackV0.has_mcParticle() || !negTrackV0.has_mcParticle()) {
571571
continue;
572572
}
@@ -1390,28 +1390,28 @@ struct HfCorrelatorLcScHadrons {
13901390
PROCESS_SWITCH(HfCorrelatorLcScHadrons, processMcGenMixedEvent, "Process Mixed Event McGen", false);
13911391

13921392
void processDataLambdaV0(soa::Join<aod::Collisions, aod::EvSels>::iterator const& collision,
1393-
TracksData const& tracks, aod::V0Datas const& V0s)
1393+
TracksData const& tracks, aod::V0Datas const& v0s)
13941394
{
13951395
registry.fill(HIST("hEventLambdaV0"), 0.5);
13961396
if (!eventSelV0(collision)) {
13971397
return;
13981398
}
13991399
registry.fill(HIST("hEventLambdaV0"), 1.5);
14001400

1401-
fillV0Histograms<false>(collision, V0s, tracks);
1401+
fillV0Histograms<false>(collision, v0s, tracks);
14021402
}
14031403
PROCESS_SWITCH(HfCorrelatorLcScHadrons, processDataLambdaV0, "Data process for v0 lambda", false);
14041404

14051405
void processMcLambdaV0(soa::Join<aod::Collisions, aod::EvSels>::iterator const& collision,
1406-
TracksWithMc const& tracks, soa::Join<aod::V0Datas, aod::McV0Labels> const& V0s, aod::McParticles const&)
1406+
TracksWithMc const& tracks, soa::Join<aod::V0Datas, aod::McV0Labels> const& v0s, aod::McParticles const&)
14071407
{
14081408
registry.fill(HIST("hEventLambdaV0"), 0.5);
14091409
if (!eventSelV0(collision)) {
14101410
return;
14111411
}
14121412
registry.fill(HIST("hEventLambdaV0"), 1.5);
14131413

1414-
fillV0Histograms<true>(collision, V0s, tracks);
1414+
fillV0Histograms<true>(collision, v0s, tracks);
14151415
}
14161416
PROCESS_SWITCH(HfCorrelatorLcScHadrons, processMcLambdaV0, "Mc process for v0 lambda", false);
14171417
};

0 commit comments

Comments
 (0)