Skip to content

Commit

Permalink
Merge pull request #32 from CMB-S4/tube_rot
Browse files Browse the repository at this point in the history
Rotate LAT wafers differently depending on type
  • Loading branch information
tskisner authored Sep 14, 2023
2 parents 9c49d91 + 55ac60c commit 47dbbf5
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 47dbbf5

Please sign in to comment.