wrapTransform¶
- lsst.meas.base.wrapTransform(transformClass, hasLogName=False)¶
Modify a C++ transform to accept either a
Configor aControl.That is, the configuration may either be provided as a (C++)
Controlobject or an instance of a Python class derived fromBasePluginConfig.- Parameters:
- transformClassSubclass of C++
BaseTransform A C++ transform class, wrapped with pybind11. Its constructor must take a
Controlobject, astd::string, and aSchemaMapper, in that order.- hasLogName
bool, optional Unused.
- transformClassSubclass of C++