We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56ee106 + 9ec516c commit 37fb3e5Copy full SHA for 37fb3e5
PWGCF/Femto3D/Tasks/femto3dQA.cxx
@@ -113,9 +113,11 @@ struct QAHistograms {
113
int N = _dcaBinning.value[0]; // number of bins -- must be odd otherwise will be increased by 1
114
115
std::unique_ptr<double[]> dca_bins;
116
-
+
117
if (static_cast<int>(_dcaBinning.value[2]) != 1.0) {
118
- if (N % 2 != 1) { N += 1;}
+ if (N % 2 != 1) {
119
+ N += 1;
120
+ }
121
dca_bins = calc_var_bins(N + 1, _dcaBinning.value[1], static_cast<int>(_dcaBinning.value[2]));
122
} else {
123
dca_bins = calc_const_bins(N, -_dcaBinning.value[1], _dcaBinning.value[1]);
0 commit comments