Skip to content

Commit

Permalink
Add a few of the base Data classes that will be included
Browse files Browse the repository at this point in the history
  • Loading branch information
krzywon committed Mar 22, 2024
1 parent d819268 commit d46a89d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions sasdata/data/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,24 @@ class DataMixin:
noise: np.ndarray
# A series of external conditions applied during the measurement that resulted in this data set.
conditions: ConditionVector


class SASData(DataMixin):
def __init__(self, *args, **kwargs):
pass


class PinholeData(SASData):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)


class SlitData(SASData):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)


class SESANSData(DataMixin):
def __init__(self, *args, **kwargs):
pass

0 comments on commit d46a89d

Please sign in to comment.