Source code for beast.observationmodel.noisemodel.noisemodel

from ...external.eztables import Table

__all__ = ['NoiseModel']

[docs]class NoiseModel(object): """ Initial class of noise models """ def __init__(self, astfile, *args, **kwargs): self.astfile = astfile self.load_data()
[docs] def load_data(self): self.data = Table(self.astfile)
[docs] def fit(self, *args, **kwargs): raise NotImplemented
[docs] def __call__(self, sedgrid): raise NotImplemented