Skip to content

Commit

Permalink
Correct init file and input connection
Browse files Browse the repository at this point in the history
  • Loading branch information
rai-harshit committed Jan 19, 2024
1 parent c52b683 commit 7247e15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions python/lsst/ap/association/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@
from .packageAlerts import *
from .diaPipe import *
from .transformDiaSourceCatalog import *
from .filterDiaSourceCatalog import *
2 changes: 1 addition & 1 deletion python/lsst/ap/association/filterDiaSourceCatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
butlerQC.put(outputs, outputRefs)

@timeMethod
def run(self, diaSourceCat):
def run(self, diaSourceCat, ccdVisitId):
"""Filter sky sources from the supplied DiaSource catalog.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ap/association/transformDiaSourceCatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TransformDiaSourceCatalogConnections(pipeBase.PipelineTaskConnections,
)
diaSourceCat = connTypes.Input(
doc="Catalog of DiaSources produced during image differencing.",
name="{fakesType}{coaddName}Diff_diaSrc",
name="{fakesType}{coaddName}Diff_candidateDiaSrc",
storageClass="SourceCatalog",
dimensions=("instrument", "visit", "detector"),
)
Expand Down

0 comments on commit 7247e15

Please sign in to comment.