Skip to content

Commit

Permalink
Tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
SolarDrew committed Mar 11, 2024
1 parent 95b4982 commit d64af2c
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions dkist/wcs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,10 @@

__all__ = [
"CoupledCompoundModel",
"InverseVaryingCelestialTransform",
"InverseVaryingCelestialTransform2D",
"InverseVaryingCelestialTransform3D",
"VaryingCelestialTransform",
"VaryingCelestialTransform2D",
"VaryingCelestialTransform3D",
"BaseVaryingCelestialTransform",
"BaseVaryingCelestialTransform2D",
"generate_celestial_transform",
"AsymmetricMapping",
"varying_celestial_transform_from_tables",
Expand Down Expand Up @@ -309,28 +305,16 @@ class VaryingCelestialTransform(BaseVaryingCelestialTransform):
n_outputs = 2


class InverseVaryingCelestialTransform(BaseVaryingCelestialTransform):
pass


class VaryingCelestialTransform2D(BaseVaryingCelestialTransform):
n_inputs = 4
n_outputs = 2


class InverseVaryingCelestialTransform2D(BaseVaryingCelestialTransform):
pass


class VaryingCelestialTransform3D(BaseVaryingCelestialTransform):
n_inputs = 5
n_outputs = 2


class InverseVaryingCelestialTransform3D(BaseVaryingCelestialTransform):
pass


class CoupledCompoundModel(CompoundModel):
"""
This class takes two models which share one or more inputs on the forward
Expand Down Expand Up @@ -511,9 +495,6 @@ def __repr__(self):
(1, False): VaryingCelestialTransform,
(2, False): VaryingCelestialTransform2D,
(3, False): VaryingCelestialTransform3D,
(1, True): InverseVaryingCelestialTransform,
(2, True): InverseVaryingCelestialTransform2D,
(3, True): InverseVaryingCelestialTransform3D,
}

def varying_celestial_transform_from_tables(
Expand Down

0 comments on commit d64af2c

Please sign in to comment.