Skip to content

Commit ac3a5de

Browse files
authored
[PWGEM/Dilepton] update event qc task and fix axis label (AliceO2Group#9470)
1 parent 26653dc commit ac3a5de

File tree

6 files changed

+140
-102
lines changed

6 files changed

+140
-102
lines changed

PWGEM/Dilepton/Core/Dilepton.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1576,6 +1576,15 @@ struct Dilepton {
15761576
if (collision.selection_bit(o2::aod::evsel::kNoHighMultCollInPrevRof)) {
15771577
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 16.0);
15781578
}
1579+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayer3)) {
1580+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 17.0);
1581+
}
1582+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayer0123)) {
1583+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 18.0);
1584+
}
1585+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayersAll)) {
1586+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 19.0);
1587+
}
15791588
if (!fEMEventCut.IsSelected(collision)) {
15801589
continue;
15811590
}

PWGEM/Dilepton/Core/SingleTrackQC.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,27 @@ struct SingleTrackQC {
787787
if (collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeStandard)) {
788788
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 12.0);
789789
}
790+
if (collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeStrict)) {
791+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 13.0);
792+
}
793+
if (collision.selection_bit(o2::aod::evsel::kNoCollInRofStandard)) {
794+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 14.0);
795+
}
796+
if (collision.selection_bit(o2::aod::evsel::kNoCollInRofStrict)) {
797+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 15.0);
798+
}
799+
if (collision.selection_bit(o2::aod::evsel::kNoHighMultCollInPrevRof)) {
800+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 16.0);
801+
}
802+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayer3)) {
803+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 17.0);
804+
}
805+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayer0123)) {
806+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 18.0);
807+
}
808+
if (collision.selection_bit(o2::aod::evsel::kIsGoodITSLayersAll)) {
809+
fRegistry.fill(HIST("Event/norm/hCollisionCounter"), 19.0);
810+
}
790811
if (!fEMEventCut.IsSelected(collision)) {
791812
continue;
792813
}

PWGEM/Dilepton/TableProducer/eventSelection.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ struct EMEventSelection {
9595
return false;
9696
}
9797

98-
if (!(cfgFT0COccupancyMin < collision.ft0cOccupancyInTimeRange() && collision.ft0cOccupancyInTimeRange() < cfgFT0COccupancyMax)) {
98+
if (!(cfgFT0COccupancyMin <= collision.ft0cOccupancyInTimeRange() && collision.ft0cOccupancyInTimeRange() < cfgFT0COccupancyMax)) {
9999
return false;
100100
}
101101

PWGEM/Dilepton/TableProducer/filterDielectronEvent.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ struct filterDielectronEvent {
148148
fRegistry.add("Track/hChi2ITS", "chi2/number of ITS clusters", kTH1F, {{100, 0, 10}}, false);
149149
fRegistry.add("Track/hITSClusterMap", "ITS cluster map", kTH1F, {{128, -0.5, 127.5}}, false);
150150
fRegistry.add("Track/hMeanClusterSizeITS", "mean cluster size ITS;p_{pv} (GeV/c);<cluster size> on ITS #times cos(#lambda)", kTH2F, {{1000, 0, 10}, {150, 0, 15}}, false);
151-
fRegistry.add("Pair/before/hMvsPt", "m_{ee} vs. p_{T,ee};m_{ee} (GeV/c^{2});p_{T,ee} (GeV/c)", kTH2F, {{100, 0, 0.1}, {200, 0, 2}}, false);
151+
fRegistry.add("Pair/before/hMvsPt", "m_{ee} vs. p_{T,ee};m_{ee} (GeV/c^{2});p_{T,ee} (GeV/c)", kTH2F, {{400, 0, 4}, {100, 0, 10}}, false);
152152
fRegistry.add("Pair/before/hMvsPhiV", "mee vs. phiv;#varphi_{V} (rad.);m_{ee} (GeV/c^{2})", kTH2F, {{90, 0, M_PI}, {100, 0, 0.1}}, false);
153153
fRegistry.addClone("Pair/before/", "Pair/after/");
154154
fRegistry.add("Pair/uls/hM", "m_{ee};m_{ee} (GeV/c^{2})", kTH1F, {{100, 0, 0.1}}, false);

0 commit comments

Comments
 (0)