|
LSST Applications g013ef56533+2edba5e46d,g083dd6704c+a047e97985,g199a45376c+0ba108daf9,g1fd858c14a+d594c53611,g210f2d0738+d003cec0be,g25ecf2a47a+204e5a9ad5,g262e1987ae+16552835ac,g29ae962dfc+867dbde878,g2cef7863aa+aef1011c0b,g30d7c61c20+990af31dd2,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+c8e8c50746,g47891489e3+f459a6810c,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5b326b94bb+01d4acd216,g64539dfbff+d003cec0be,g67b6fd64d1+f459a6810c,g6ebf1fc0d4+8c5ae1fdc5,g74acd417e5+4b21cac47b,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+f459a6810c,g8d7436a09f+b19788b7f5,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g97be763408+3bd86eedd0,g98a1a72a9c+67cf96cfb3,g98df359435+688a06938e,gbf99507273+8c5ae1fdc5,gc2a301910b+d003cec0be,gca7fc764a6+f459a6810c,gd7ef33dd92+f459a6810c,gdab6d2f7ff+4b21cac47b,ge410e46f29+f459a6810c,ge41e95a9f2+d003cec0be,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.43
LSST Data Management Base Package
|
Go to the source code of this file.
Macros | |
| #define | LSST_DECLARE_CONTROL_FIELD(WRAPPER, CLASS, NAME) |
Macro used to wrap fields declared by LSST_CONTROL_FIELD using Pybind11. | |
| #define | LSST_DECLARE_NESTED_CONTROL_FIELD(WRAPPER, CLASS, NAME) |
Macro used to wrap fields declared by LSST_NESTED_CONTROL_FIELD using Pybind11. | |
| #define LSST_DECLARE_CONTROL_FIELD | ( | WRAPPER, | |
| CLASS, | |||
| NAME ) |
Macro used to wrap fields declared by LSST_CONTROL_FIELD using Pybind11.
Example:
LSST_DECLARE_CONTROL_FIELD(clsFoo, Foo, myField)
| WRAPPER | The py::class_ object representing the control class being wrapped. |
| CLASS | The control class. Must be a C++ identifier (not a string), properly namespace-qualified for the context where this macro is being called. |
| NAME | The control field. Must be a C++ identifier (not a string), and must match the NAME argument of the original LSST_CONTROL_FIELD macro. |
Definition at line 50 of file python.h.
| #define LSST_DECLARE_NESTED_CONTROL_FIELD | ( | WRAPPER, | |
| CLASS, | |||
| NAME ) |
Macro used to wrap fields declared by LSST_NESTED_CONTROL_FIELD using Pybind11.
Example:
LSST_DECLARE_NESTED_CONTROL_FIELD(clsFoo, Foo, myField)
| WRAPPER | The py::class_ object representing the control class being wrapped. |
| CLASS | The control class. Must be a C++ identifier (not a string), properly namespace-qualified for the context where this macro is being called. |
| NAME | The control field. Must be a C++ identifier (not a string), and must match the NAME argument of the original LSST_CONTROL_FIELD macro. |
Definition at line 72 of file python.h.