Skip to content

Commit

Permalink
Merge pull request #708 from lsst/tickets/DM-35725
Browse files Browse the repository at this point in the history
DM-35725: Remove usage of PerTractCcdDataIdContainer
  • Loading branch information
timj committed Aug 2, 2022
2 parents cdcd724 + e22c190 commit df14cae
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions python/lsst/pipe/tasks/processCcdWithFakes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import lsst.pipe.base as pipeBase

from .insertFakes import InsertFakesTask
from lsst.meas.base import PerTractCcdDataIdContainer
from lsst.afw.table import SourceTable
from lsst.obs.base import ExposureIdInfo
from lsst.pipe.base import PipelineTask, PipelineTaskConfig, CmdLineTask, PipelineTaskConnections
Expand Down Expand Up @@ -419,14 +418,6 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
outputs = self.run(**inputs)
butlerQC.put(outputs, outputRefs)

@classmethod
def _makeArgumentParser(cls):
parser = pipeBase.ArgumentParser(name=cls._DefaultName)
parser.add_id_argument("--id", "fakes_calexp", help="data ID with raw CCD keys [+ tract optionally], "
"e.g. --id visit=12345 ccd=1,2 [tract=0]",
ContainerClass=PerTractCcdDataIdContainer)
return parser

def run(self, fakeCats, exposure, skyMap, wcs=None, photoCalib=None, exposureIdInfo=None,
icSourceCat=None, sfdSourceCat=None, externalSkyWcsGlobalCatalog=None,
externalSkyWcsTractCatalog=None, externalPhotoCalibGlobalCatalog=None,
Expand Down

0 comments on commit df14cae

Please sign in to comment.