Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rotate LAT wafers differently depending on type #32

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion s4sim/hardware/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,12 @@ def sim_nominal():
woff[ttyp] += 1
break
off += 1
tb["wafer_angle"] = [-90.0 for tw in range(1)] # Degrees
if ttyp == "CHLAT_HF" or ttyp == "SPLAT_HF":
# These are hex wafers
tb["wafer_angle"] = [-90.0 for tw in range(1)] # Degrees
else:
# These are rhombi-hex wafers
tb["wafer_angle"] = [0.0 for tw in range(1)] # Degrees
if tindx < 170:
# CHLAT platescale
tb["platescale"] = 0.003964
Expand Down