Skip to content

Commit 4cbf0a3

Browse files
authored
Add files via upload
1 parent 39e604c commit 4cbf0a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGDQ/Tasks/dqEnergyCorrelator_direct.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ struct AnalysisEnergyCorrelator {
808808
// apply kinematic cuts for signal
809809
if ((t1_raw.pt() < fConfigPairOptions.fConfigJpsiPtMin || t1_raw.pt() > fConfigPairOptions.fConfigJpsiPtMax))
810810
continue;
811-
if (abs(t1_raw.y()) > fConfigPairOptions.fConfigJpsiRapMax)
811+
if (std::abs(t1_raw.y()) > fConfigPairOptions.fConfigJpsiRapMax)
812812
continue;
813813
// for the energy correlators
814814
for (auto& t2 : groupedMCTracks2) {
@@ -879,6 +879,7 @@ struct AnalysisEnergyCorrelator {
879879
}
880880
// loop over two event comibnations
881881
for (auto& [event1, event2] : selfCombinations(*fMixingBinning, fConfigEventOptions.fConfigMixingDepth.value, -1, events, events)) {
882+
LOG(info) << "check1";
882883
VarManager::ResetValues(0, VarManager::kNVars);
883884
VarManager::FillEvent<gkEventFillMapWithMults>(event1);
884885
if (!fEventCut->IsSelected(VarManager::fgValues)) {

0 commit comments

Comments
 (0)