def getModelpdf(self, x): output = 1.0/math.sqrt(2*np.pi*(self.getSigmaValue()**2)) output *= math.exp(-0.5*((x - self.getx0Value())/self.getSigmaValue())**2) return output