Skip to content

Commit

Permalink
Add base distribution models
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyhunt committed Nov 22, 2024
1 parent f5f870f commit e636815
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ocelot/model/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .distribution.king62 import King62 # noqa: F401
from .distribution.king64 import King64 # noqa: F401
from .distribution.plummer import Plummer # noqa: F401
Empty file.
5 changes: 5 additions & 0 deletions src/ocelot/model/distribution/_base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from abc import ABC


class ClusterDistributionModel(ABC):
pass
5 changes: 5 additions & 0 deletions src/ocelot/model/distribution/king62.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from ._base import ClusterDistributionModel


class King62(ClusterDistributionModel):
pass
5 changes: 5 additions & 0 deletions src/ocelot/model/distribution/king64.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from ._base import ClusterDistributionModel


class King64(ClusterDistributionModel):
pass
5 changes: 5 additions & 0 deletions src/ocelot/model/distribution/plummer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from ._base import ClusterDistributionModel


class Plummer(ClusterDistributionModel):
pass

0 comments on commit e636815

Please sign in to comment.