At the moment when computing theory predictions we make calls to C++
|
th_predictions = ThPredictions(loaded_pdf, loaded_data) |
afaict this can be replaced in favour of validphys.convolution. In particular the stats no longer need to be done using C++ too. However, before fixing this I just want to make sure of the following:
When we have
Is this equivalent to:
np.std(self._rawdata, axis=1)
because at the moment, (for NMC for example)
np.allclose(self.std_error, np.std(self._rawdata, axis=1)
# False
cc @scarrazza
At the moment when computing theory predictions we make calls to
C++nnpdf/validphys2/src/validphys/results.py
Line 131 in 70ca11d
afaict this can be replaced in favour of
validphys.convolution. In particular the stats no longer need to be done using C++ too. However, before fixing this I just want to make sure of the following:When we have
nnpdf/validphys2/src/validphys/results.py
Line 108 in 70ca11d
Is this equivalent to:
because at the moment, (for NMC for example)
cc @scarrazza