gem.enum.GmosDetector.scala Maven / Gradle / Ivy
The newest version!
// Copyright (c) 2016-2020 Association of Universities for Research in Astronomy, Inc. (AURA)
// For license information see LICENSE or https://opensource.org/licenses/BSD-3-Clause
package gem
package enum
import cats.instances.string._
import cats.syntax.eq._
import gem.util.Enumerated
import gsp.math.Angle
/**
* Enumerated type for GMOS detector.
* @group Enumerations (Generated)
*/
sealed abstract class GmosDetector(
val tag: String,
val shortName: String,
val longName: String,
val northPixelSize: Angle,
val southPixelSize: Angle,
val shuffleOffset: Int,
val xSize: Int,
val ySize: Int,
val maxRois: Int
) extends Product with Serializable
object GmosDetector {
/** @group Constructors */ case object E2V extends GmosDetector("E2V", "E2V", "E2V", Angle.fromDoubleArcseconds(0.0727), Angle.fromDoubleArcseconds(0.0730), 1536, 6144, 4608, 4)
/** @group Constructors */ case object HAMAMATSU extends GmosDetector("HAMAMATSU", "Hamamatsu", "Hamamatsu", Angle.fromDoubleArcseconds(0.0809), Angle.fromDoubleArcseconds(0.0809), 1392, 6144, 4224, 5)
/** All members of GmosDetector, in canonical order. */
val all: List[GmosDetector] =
List(E2V, HAMAMATSU)
/** Select the member of GmosDetector with the given tag, if any. */
def fromTag(s: String): Option[GmosDetector] =
all.find(_.tag === s)
/** Select the member of GmosDetector with the given tag, throwing if absent. */
def unsafeFromTag(s: String): GmosDetector =
fromTag(s).getOrElse(throw new NoSuchElementException(s"GmosDetector: Invalid tag: '$s'"))
/** @group Typeclass Instances */
implicit val GmosDetectorEnumerated: Enumerated[GmosDetector] =
new Enumerated[GmosDetector] {
def all = GmosDetector.all
def tag(a: GmosDetector) = a.tag
override def unsafeFromTag(s: String): GmosDetector =
GmosDetector.unsafeFromTag(s)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy