ChainedKeyedDataActions¶
- class lsst.analysis.tools.actions.keyedData.ChainedKeyedDataActions(*args, **kw)¶
- Bases: - KeyedDataAction- Run a series of - KeyedDataActions and accumulated their output into one KeyedData result.- Attributes Summary - Set of KeyedData actions to run, results will be concatenated into a final output KeyedDataobject ( - ConfigurableActionStructField)- Methods Summary - __call__(data, **kwargs)- Call self as a function. - Return the schema an - AnalysisActionexpects to be present in the arguments supplied to the __call__ method.- Return the schema an - AnalysisActionwill produce, if the- __call__method returns- KeyedData, otherwise this may return None.- Attributes Documentation - keyedDataActions¶
- Set of KeyedData actions to run, results will be concatenated into a final output KeyedDataobject ( - ConfigurableActionStructField)
 - Methods Documentation - __call__(data: MutableMapping[str, ndarray[Any, dtype[ScalarType]] | Scalar | HealSparseMap | Tensor], **kwargs) MutableMapping[str, ndarray[Any, dtype[ScalarType]] | Scalar | HealSparseMap | Tensor]¶
- Call self as a function. 
 - getInputSchema() Tensor]]]¶
- Return the schema an - AnalysisActionexpects to be present in the arguments supplied to the __call__ method.- Returns:
- resultKeyedDataSchema
- The schema this action requires to be present when calling this action, keys are unformatted. 
 
- result
 
 - getOutputSchema() Tensor]]]¶
- Return the schema an - AnalysisActionwill produce, if the- __call__method returns- KeyedData, otherwise this may return None.- Returns:
- resultKeyedDataSchemaor None
- The schema this action will produce when returning from call. This will be unformatted if any templates are present. Should return None if action does not return - KeyedData.
 
- result