You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add trending and check for input and class ratios + configurable parameters for check
* implementation of the requested changes
* code simplification for the input and class rate check
* add check in order not to divide by 0
* implementation of the requested changes
---------
Co-authored-by: Lucia Anna Tarasovicova <lucia.anna.husova@cern.ch>
if (index > 4 && index < 10 && mClassIndex[index - 5] == 65) {// if the class index == 65, this class is not defined in the config, so it won't be trended
169
172
ILOG(Info, Support) << "Class " << mClassNames[index - 5] << " is not trended." << ENDM;
170
173
index++;
171
174
continue;
172
175
}
173
176
177
+
if (index > 13 && (mClassIndex[index - 13] == 65 || mClassIndex[0] == 65)) { // if the class index == 65, this class is not defined in the config, so it won't be trended
178
+
ILOG(Info, Support) << "Class ratio " << mClassNames[index - 13] << " / " << mClassNames[0] << " is not trended." << ENDM;
0 commit comments