ACDC_KNOSYS-2021/FUSION/gaussianModel.py

10 lines
283 B
Python
Raw Normal View History

2021-10-04 18:31:00 +08:00
class GaussianModel:
def __init__(self, alphah=None, refPoints=None):
self.alphah = alphah
self.refPoints = refPoints
def setAlpha(self, alphah):
self.alphah = alphah
def setRefPoints(self, refPoints):
self.refPoints = refPoints