Skip to content

Commit 5721acc

Browse files
committed
Fixes
1 parent ec93cae commit 5721acc

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Common/LegacyDataQA/centqa.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,31 @@ struct CentQA {
4848
histos.add("hV0A", "V0A centrality", kTH1F, {axisCentrality});
4949
histos.add("hCL0", "CL0 centrality", kTH1F, {axisCentrality});
5050
histos.add("hCL1", "CL1 centrality", kTH1F, {axisCentrality});
51-
histos.add("hRefMult5", "RefMult5 centrality", kTH1F, {axisCentrality});
52-
histos.add("hRefMult8", "RefMult8 centrality", kTH1F, {axisCentrality});
51+
histos.add("hRefMult5", "RefMult .5 centrality", kTH1F, {axisCentrality});
52+
histos.add("hRefMult8", "RefMult .8 centrality", kTH1F, {axisCentrality});
5353
}
5454

55-
void processV0M(soa::Join<aod::Collision, aod::CentRun2V0Ms>::iterator const& col)
55+
void processV0M(soa::Join<aod::Collisions, aod::CentRun2V0Ms>::iterator const& col)
5656
{
5757
histos.fill(HIST("hV0M"), col.centRun2V0M());
5858
}
59-
void processV0A(soa::Join<aod::Collision, aod::CentRun2V0As>::iterator const& col)
59+
void processV0A(soa::Join<aod::Collisions, aod::CentRun2V0As>::iterator const& col)
6060
{
6161
histos.fill(HIST("hV0A"), col.centRun2V0A());
6262
}
63-
void processCL0(soa::Join<aod::Collision, aod::CentRun2CL0s>::iterator const& col)
63+
void processCL0(soa::Join<aod::Collisions, aod::CentRun2CL0s>::iterator const& col)
6464
{
6565
histos.fill(HIST("hCL0"), col.centRun2CL0());
6666
}
67-
void processCL1(soa::Join<aod::Collision, aod::CentRun2CL1s>::iterator const& col)
67+
void processCL1(soa::Join<aod::Collisions, aod::CentRun2CL1s>::iterator const& col)
6868
{
6969
histos.fill(HIST("hCL1"), col.centRun2CL1());
7070
}
71-
void processRefMult5(soa::Join<aod::Collision, aod::CentRun2RefMult5s>::iterator const& col)
71+
void processRefMult5(soa::Join<aod::Collisions, aod::CentRun2RefMult5s>::iterator const& col)
7272
{
7373
histos.fill(HIST("hRefMult5"), col.centRun2RefMult5());
7474
}
75-
void processRefMult8(soa::Join<aod::Collision, aod::CentRun2RefMult8s>::iterator const& col)
75+
void processRefMult8(soa::Join<aod::Collisions, aod::CentRun2RefMult8s>::iterator const& col)
7676
{
7777
histos.fill(HIST("hRefMult8"), col.centRun2RefMult8());
7878
}

Common/LegacyDataQA/otfv0qa.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct OTFV0Qa {
4949
histos.add("hCandidates", "Number of OTF V0s", kTH1F, {axisNCandidates});
5050
}
5151

52-
void process(aod::Collision const& col, aod::OTFV0s const& v0s)
52+
void process(aod::Collision const& col, aod::Run2OTFV0s const& v0s)
5353
{
5454
histos.fill(HIST("hEventCounter"), 0.5);
5555
histos.fill(HIST("hCandidates"), v0s.size());

0 commit comments

Comments
 (0)