LSSTApplications  11.0-13-gbb96280,12.1.rc1,12.1.rc1+1,12.1.rc1+2,12.1.rc1+5,12.1.rc1+8,12.1.rc1-1-g06d7636+1,12.1.rc1-1-g253890b+5,12.1.rc1-1-g3d31b68+7,12.1.rc1-1-g3db6b75+1,12.1.rc1-1-g5c1385a+3,12.1.rc1-1-g83b2247,12.1.rc1-1-g90cb4cf+6,12.1.rc1-1-g91da24b+3,12.1.rc1-2-g3521f8a,12.1.rc1-2-g39433dd+4,12.1.rc1-2-g486411b+2,12.1.rc1-2-g4c2be76,12.1.rc1-2-gc9c0491,12.1.rc1-2-gda2cd4f+6,12.1.rc1-3-g3391c73+2,12.1.rc1-3-g8c1bd6c+1,12.1.rc1-3-gcf4b6cb+2,12.1.rc1-4-g057223e+1,12.1.rc1-4-g19ed13b+2,12.1.rc1-4-g30492a7
LSSTDataManagementBasePackage
Macros
config.h File Reference

Go to the source code of this file.

Macros

#define LSST_CONTROL_FIELD(NAME, TYPE, DOC)
 
#define LSST_NESTED_CONTROL_FIELD(NAME, MODULE, TYPE, DOC)
 

Macro Definition Documentation

#define LSST_CONTROL_FIELD (   NAME,
  TYPE,
  DOC 
)
Value:
static char const * _doc_ ## NAME() { \
static char const * doc = DOC; \
return doc; \
} \
static char const * _type_ ## NAME() { \
static char const * type = #TYPE; \
return type; \
} \
TYPE NAME

A preprocessor macro used to define fields in C++ "control object" structs. These objects can then be wrapped into full-fledged Config objects by the functions in lsst.pex.config.wrap.

The defaults for the config class will be set properly if and only if the control class is default-constructable.

See lsst.pex.config.wrap.makeConfigClass for a complete example of how to use this macro.

Definition at line 36 of file config.h.

#define LSST_NESTED_CONTROL_FIELD (   NAME,
  MODULE,
  TYPE,
  DOC 
)
Value:
static char const * _doc_ ## NAME() { \
static char const * doc = DOC; \
return doc; \
} \
static char const * _type_ ## NAME() { \
static char const * type = #TYPE; \
return type; \
} \
static char const * _module_ ## NAME() { \
static char const * mod = #MODULE; \
return mod; \
} \
TYPE NAME

A preprocessor macro used to define fields in C++ "control object" structs, for nested control objects. These can be wrapped into Config objects by the functions in lsst.pex.config.wrap.

The nested object will be held as a regular, by-value data member (there's currently no way to use smart pointers or getters/setters instead).

The nested control object class must also be wrapped into a config object, and the Python module of the swigged nested control object must be passed as the MODULE argument to the macro. When a wrapped control object is used as a nested field in the same package it is defined in, the MODULE argument must refer to the actual Swig-generated module, not the just the package, even if the name is lifted into the package namespace.

See lsst.pex.config.wrap.makeConfigClass for a complete example of how to use this macro.

Definition at line 62 of file config.h.