Skip to content

Commit

Permalink
Merge pull request #2076 from swalker2m/feature/REL-4193-B
Browse files Browse the repository at this point in the history
REL-4193: GHOST AGS PWFS2 inner limit update
  • Loading branch information
swalker2m authored Nov 9, 2022
2 parents 9c95b06 + f794d58 commit cbe5db4
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,13 @@ final class Ghost
edu.gemini.skycalc.Angle.arcmins(limit)
}

override def pwfs2VignettingClearance(ctx: ObsContext): Angle =
edu.gemini.skycalc.Angle.arcmins(4.0)
override def pwfs2VignettingClearance(ctx: ObsContext): Angle = {
val limit = ctx.getTargets.getAsterism match {
case GhostAsterism.SingleTarget(_, _) => 4.0
case _ => 5.25
}
edu.gemini.skycalc.Angle.arcmins(limit)
}

}

Expand Down

0 comments on commit cbe5db4

Please sign in to comment.