We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e606291 commit 4998bd7Copy full SHA for 4998bd7
zodipy/line_of_sight.py
@@ -5,7 +5,7 @@
5
import numpy as np
6
7
from zodipy.component import ComponentLabel
8
-from zodipy.component_params import RRM, WRIGHT
+from zodipy.component_params import RRM
9
10
if TYPE_CHECKING:
11
import numpy.typing as npt
@@ -48,13 +48,8 @@
48
ComponentLabel.FEATURE_RRM: DIRBE_CUTOFFS[ComponentLabel.FEATURE],
49
}
50
51
-WRIGHT_CUTOFFS: dict[ComponentLabel, tuple[float | np.float64, float | np.float64]] = {
52
- ComponentLabel.CLOUDRING_WRIGHT: (R_0, R_JUPITER),
53
- ComponentLabel.BAND_WRIGHT: (R_0, R_JUPITER),
54
-}
55
-
56
57
-COMPONENT_CUTOFFS = {**DIRBE_CUTOFFS, **RRM_CUTOFFS, **WRIGHT_CUTOFFS}
+COMPONENT_CUTOFFS = {**DIRBE_CUTOFFS, **RRM_CUTOFFS}
58
59
60
def integrate_leggauss(
0 commit comments