Skip to content
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0035097
Make the template to implement the wire grid calibration
Nov 4, 2025
48f8d88
Add the tentative yaml file for preprocess
Nov 9, 2025
07cc0a9
Make the first draft
Nov 11, 2025
4e50c00
Delete the tentetive yaml file
Nov 11, 2025
0939ff9
run successfully at NERSC
Dec 10, 2025
8b059ad
Put gamma_cal under tod.wg
Dec 11, 2025
408f73e
Delete start_time and stop_time in L2config and L3config
Dec 11, 2025
f668418
Refactor config
Dec 11, 2025
c1b9c7f
Refactor the encoder angle correction
Dec 11, 2025
46cdfaf
Refactor the configuration file and the way to read the file
Dec 11, 2025
6d8f5e0
Refactor the wire grid encoder count to radians
YutaroKASAI Dec 11, 2025
67ba44a
Save all the wire grid stats
YutaroKASAI Dec 11, 2025
caf4cd1
Rename make_gamma_wg.py to make_wg_cal.py, refactor load_data and del…
YutaroKASAI Dec 12, 2025
a576091
Delete unnecessary hardware constant
YutaroKASAI Dec 12, 2025
4bcceb0
Delete tentative yaml file
YutaroKASAI Dec 12, 2025
3d019f5
Test the automation in site computer
YutaroKASAI Dec 13, 2025
f32bcee
Update the comments and refactor based on pep8
YutaroKASAI Dec 14, 2025
87b43b2
Refactor based on pep8
YutaroKASAI Dec 14, 2025
ab7629f
Write the documents and docstring
YutaroKASAI Dec 15, 2025
fa1ebd9
Fix minor problem from Kyohei's comment
YutaroKASAI Jan 6, 2026
b93afa8
Fix the docstring of load_data function
YutaroKASAI Jan 6, 2026
d7b20b3
Fix the docstring based on Hironobu's comment
YutaroKASAI Jan 7, 2026
f9dedd5
rename the variable in load_data and fix the docstring
YutaroKASAI Jan 7, 2026
bddff32
Add the lacking information in docstring
YutaroKASAI Jan 7, 2026
596d320
Merge branch 'master' into make_gamma_wg
YutaroKASAI Jan 8, 2026
b083a51
Resolve conflict
YutaroKASAI Jan 8, 2026
d7cf30c
Refactoring the utils import
YutaroKASAI Jan 8, 2026
2525e7f
Remove unnecessary comment
YutaroKASAI Jan 8, 2026
db9f79e
Fix util import
YutaroKASAI Jan 8, 2026
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
9 changes: 5 additions & 4 deletions sotodlib/site_pipeline/make_wg_cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
import argparse
from typing import Optional, List, Callable


from sotodlib import core
from sotodlib.site_pipeline import util, jobdb
from sotodlib.site_pipeline import jobdb
from sotodlib.site_pipeline.utils.logging import init_logger
from sotodlib.site_pipeline.utils.pipeline import main_launcher
from sotodlib.utils.procs_pool import get_exec_env
from sotodlib.core.metadata.loader import LoaderError
from sotodlib.hwp.hwp_angle_model import apply_hwp_angle_model
Expand Down Expand Up @@ -129,7 +130,7 @@ def _main(
and unlocked.
"""

logger = util.init_logger(
logger = init_logger(
__name__, 'make_wg_cal: ', verbosity=verbosity)

ctx = core.Context(context_path, metadata_list=metadata_list)
Expand Down Expand Up @@ -240,4 +241,4 @@ def get_parser():


if __name__ == '__main__':
util.main_launcher(main, get_parser)
main_launcher(main, get_parser)