Skip to content

Commit

Permalink
Fix imports in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Apr 16, 2020
1 parent f0b53da commit 5926456
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pipelines/toast_bin_so3g.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import toast.tod
import toast.pipeline_tools as toast_tools

from sotodlib.data.toast_load import load_data
from sotodlib.io.toast_load import load_data


def main():
Expand Down
4 changes: 2 additions & 2 deletions pipelines/toast_so_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import toast.map as tm
import toast.tod as tt

from sotodlib.hardware import get_example, sim_telescope_detectors
from sotodlib.data.toast_load import load_data
from sotodlib.sim_hardware import get_example, sim_telescope_detectors
from sotodlib.io.toast_load import load_data


def binned_map(data, npix, subnpix, out="."):
Expand Down
4 changes: 1 addition & 3 deletions pipelines/toast_so_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@

import toast.pipeline_tools as toast_tools

import sotodlib.pipeline_tools as so_tools
import sotodlib.utils.pipeline_tools as so_tools

import numpy as np

import sotodlib.hardware

import warnings

warnings.filterwarnings("ignore")
Expand Down
4 changes: 1 addition & 3 deletions pipelines/toast_so_tf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@

import toast.pipeline_tools as toast_tools

import sotodlib.pipeline_tools as so_tools
import sotodlib.utils.pipeline_tools as so_tools

import numpy as np

import sotodlib.hardware

import warnings

warnings.filterwarnings("ignore")
Expand Down

0 comments on commit 5926456

Please sign in to comment.