#include "Obit.h"
#include "ObitErr.h"
#include "ObitImage.h"
#include "ObitFitRegion.h"
Go to the source code of this file.
Classes | |
| struct | ObitImageFitData |
| ObitImageFitData Class structure. More... | |
| struct | ObitImageFitDataClassInfo |
| ClassInfo Structure. More... | |
Defines | |
| #define | ObitImageFitDataUnref(in) ObitUnref (in) |
| Macro to unreference (and possibly destroy) an ObitImageFitData returns a ObitImageFitData*. | |
| #define | ObitImageFitDataRef(in) ObitRef (in) |
| Macro to reference (update reference count) an ObitImageFitData. | |
| #define | ObitImageFitDataIsA(in) ObitIsA (in, ObitImageFitDataGetClass()) |
| Macro to determine if an object is the member of this or a derived class. | |
Typedefs | |
| typedef void(* | ObitImageFitDataFuncFP )(gpointer data, gdouble *p, gdouble *f, gdouble *grad, gint iflag) |
| function pointer for evaluation routine used by solver | |
| typedef ObitImageFitData *(* | ObitImageFitDataCreateFP )(gchar *name, ObitFitRegion *reg, ObitInfoList *bounds, ObitImage *image, ObitErr *err) |
| Typedef for definition of class pointer structure. | |
| typedef void(* | ObitImageFitData2RegFP )(ObitImageFitData *data, ObitFitRegion *reg) |
Functions | |
| void | ObitImageFitDataClassInit (void) |
| Public: Class initializer. | |
| ObitImageFitData * | newObitImageFitData (gchar *name) |
| Public: Default Constructor. | |
| ObitImageFitData * | ObitImageFitDataCreate (gchar *name, ObitFitRegion *reg, ObitInfoList *bounds, ObitImage *image, ObitErr *err) |
| Public: Create/initialize ObitImageFitData structures. | |
| void | ObitImageFitData2Reg (ObitImageFitData *data, ObitFitRegion *reg) |
| Public: Copy contents to ObitFitRegion. | |
| gconstpointer | ObitImageFitDataGetClass (void) |
| Public: ClassInfo pointer. | |
This class is derived from the Obit class.
A copy of a pointer to an ObitImageFitData should always be made using the ObitImageFitDataRef function which updates the reference count in the object. Then whenever freeing an ObitImageFitData or changing a pointer, the function ObitImageFitDataUnref will decrement the reference count and destroy the object when the reference count hits 0. There is no explicit destructor.
|
|
Macro to determine if an object is the member of this or a derived class. Returns TRUE if a member, else FALSE in = object to reference |
|
|
Macro to reference (update reference count) an ObitImageFitData. returns a ObitImageFitData*. in = object to reference |
|
|
Macro to unreference (and possibly destroy) an ObitImageFitData returns a ObitImageFitData*. in = object to unreference |
|
|
|
|
|
Typedef for definition of class pointer structure.
|
|
|
function pointer for evaluation routine used by solver
|
|
|
Public: Default Constructor. Initializes class if needed on first call.
|
|
||||||||||||
|
Public: Copy contents to ObitFitRegion.
|
|
|
Public: Class initializer.
|
|
||||||||||||||||||||||||
|
Public: Create/initialize ObitImageFitData structures.
|
|
|
Public: ClassInfo pointer.
|
1.3.9.1