File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252#include < RtypesCore.h>
5353
5454#include < algorithm>
55+ #include < array>
5556#include < chrono>
5657#include < cmath>
5758#include < cstddef>
5859#include < cstdint>
5960#include < iterator>
6061#include < string>
6162#include < vector>
62- #include < array>
6363
6464using namespace o2 ;
6565using namespace o2 ::framework;
@@ -236,15 +236,11 @@ struct JEPFlowAnalysis {
236236 return q2 > sel;
237237 }
238238
239- if (!isHigh) {
240- if (idx >= static_cast <int >(cfgMultq2low->size ())) {
241- idx = cfgMultq2low->size () - 1 ;
242- }
243- float sel = cfgMultq2low->at (idx);
244- return q2 < sel;
239+ if (idx >= static_cast <int >(cfgMultq2low->size ())) {
240+ idx = cfgMultq2low->size () - 1 ;
245241 }
246-
247- return false ;
242+ float sel = cfgMultq2low-> at (idx);
243+ return q2 < sel ;
248244 }
249245
250246 template <typename T>
You can’t perform that action at this time.
0 commit comments