Skip to content

Commit c84a492

Browse files
authored
[PWGJE] Fix EA interval selection with ConfigurableAxis (#17612)
1 parent 87ee60f commit c84a492

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

PWGJE/Tasks/recoilJets.cxx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,11 @@ struct RecoilJets {
13201320
float weight = 1.)
13211321
{
13221322
// Get the configured scaled FT0M percentile boundaries
1323-
const std::vector<double> ft0mEdges = hist.multFT0MThresh;
1323+
const std::vector<double> rawFT0MEdges = hist.multFT0MThresh;
1324+
1325+
const std::vector<double> ft0mEdges{
1326+
rawFT0MEdges.begin() + 1,
1327+
rawFT0MEdges.end()};
13241328

13251329
bool bSigEv = false;
13261330
std::vector<double> vPhiOfTT;

0 commit comments

Comments
 (0)