Skip to content

Commit 647c4ee

Browse files
authored
[PWGLF] fix histogram names in ME process in cascade correlations (#8933)
1 parent 2477796 commit 647c4ee

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

PWGLF/Tasks/Strangeness/cascadecorrelations.cxx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -720,24 +720,24 @@ struct CascadeCorrelations {
720720
if (trigger.isSelected() >= 2) {
721721
if (trigger.sign() > 0 && trigger.bachelorId() == posIdAssoc) {
722722
// K+ from trigger Omega is the same as proton from assoc lambda
723-
registry.fill(HIST("hMEAutoCorrelationOS"), 1);
723+
registry.fill(HIST("MixedEvents/hMEAutoCorrelationOS"), 1);
724724
continue;
725725
}
726726
if (trigger.sign() < 0 && trigger.bachelorId() == negIdAssoc) {
727727
// K- from trigger Omega is the same as antiproton from assoc antilambda
728-
registry.fill(HIST("hMEAutoCorrelationOS"), -1);
728+
registry.fill(HIST("MixedEvents/hMEAutoCorrelationOS"), -1);
729729
continue;
730730
}
731731
}
732732
if (assoc.isSelected() >= 2) {
733733
if (assoc.sign() > 0 && assoc.bachelorId() == posIdTrigg) {
734734
// K+ from assoc Omega is the same as proton from trigger lambda
735-
registry.fill(HIST("hMEAutoCorrelationOS"), 1);
735+
registry.fill(HIST("MixedEvents/hMEAutoCorrelationOS"), 1);
736736
continue;
737737
}
738738
if (assoc.sign() < 0 && assoc.bachelorId() == negIdTrigg) {
739739
// K- from assoc Omega is the same as antiproton from trigger antilambda
740-
registry.fill(HIST("hMEAutoCorrelationOS"), -1);
740+
registry.fill(HIST("MixedEvents/hMEAutoCorrelationOS"), -1);
741741
continue;
742742
}
743743
}
@@ -777,33 +777,33 @@ struct CascadeCorrelations {
777777
// make sure to check for autocorrelations - only possible in same-sign correlations (if PID is correct)
778778
if (posIdTrigg == posIdAssoc && negIdTrigg == negIdAssoc) {
779779
// LOGF(info, "same v0 in SS correlation! %d %d", v0dataTrigg.v0Id(), v0dataAssoc.v0Id());
780-
registry.fill(HIST("hMEAutoCorrelation"), 0);
780+
registry.fill(HIST("MixedEvents/hMEAutoCorrelation"), 0);
781781
continue;
782782
}
783783
int bachIdTrigg = trigger.bachelorId();
784784
int bachIdAssoc = assoc.bachelorId();
785785

786786
if (bachIdTrigg == bachIdAssoc) {
787787
// LOGF(info, "same bachelor in SS correlation! %d %d", bachIdTrigg, bachIdAssoc);
788-
registry.fill(HIST("hMEAutoCorrelation"), 1);
788+
registry.fill(HIST("MixedEvents/hMEAutoCorrelation"), 1);
789789
continue;
790790
}
791791
// check for same tracks in v0's of cascades
792792
if (negIdTrigg == negIdAssoc || posIdTrigg == posIdAssoc) {
793793
// LOGF(info, "cascades have a v0-track in common in SS correlation!");
794-
registry.fill(HIST("hMEAutoCorrelation"), 2);
794+
registry.fill(HIST("MixedEvents/hMEAutoCorrelation"), 2);
795795
continue;
796796
}
797797
if (trigger.sign() < 0) { // neg cascade
798798
if (negIdTrigg == bachIdAssoc || negIdAssoc == bachIdTrigg) {
799799
// LOGF(info, "bach of casc == v0-pion of other casc in neg SS correlation!");
800-
registry.fill(HIST("hMEAutoCorrelation"), 3);
800+
registry.fill(HIST("MixedEvents/hMEAutoCorrelation"), 3);
801801
continue;
802802
}
803803
} else { // pos cascade
804804
if (posIdTrigg == bachIdAssoc || posIdAssoc == bachIdTrigg) {
805805
// LOGF(info, "bach of casc == v0-pion of other casc in pos SS correlation!");
806-
registry.fill(HIST("hMEAutoCorrelation"), 3);
806+
registry.fill(HIST("MixedEvents/hMEAutoCorrelation"), 3);
807807
continue;
808808
}
809809
}

0 commit comments

Comments
 (0)