Rename inputs into params when they are actually not inputs

This commit is contained in:
DarkPhoenix
2019-08-01 20:15:49 +03:00
parent 18d59c119c
commit 0788ff050d
6 changed files with 123 additions and 117 deletions

View File

@@ -230,13 +230,13 @@ class FitGraph(metaclass=ABCMeta):
_getters = {}
def _getPoints(self, mainInput, miscInputs, xSpec, ySpec, fit, tgt):
def _getPoints(self, mainParam, miscParams, xSpec, ySpec, fit, tgt):
try:
getter = self._getters[(xSpec.handle, ySpec.handle)]
except KeyError:
return [], []
else:
return getter(self, mainInput, miscInputs, fit, tgt)
return getter(self, mainParam, miscParams, fit, tgt)
_denormalizers = {}