Changeset 12831 for trunk/psModules/src/camera/pmFPAfileDefine.c
- Timestamp:
- Apr 13, 2007, 5:01:11 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPAfileDefine.c (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileDefine.c
r12762 r12831 19 19 20 20 // define an input-type pmFPAfile, bind to the optional fpa if supplied 21 pmFPAfile *pmFPAfileDefineInput( pmConfig *config, pmFPA *fpa, const char *name)21 pmFPAfile *pmFPAfileDefineInput(const pmConfig *config, pmFPA *fpa, const char *name) 22 22 { 23 23 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 104 104 105 105 // define a pmFPAfile, bind to the optional fpa if supplied 106 pmFPAfile *pmFPAfileDefineOutput( pmConfig *config, pmFPA *fpa, const char *name)106 pmFPAfile *pmFPAfileDefineOutput(const pmConfig *config, pmFPA *fpa, const char *name) 107 107 { 108 108 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 237 237 // save the pmFPAfile on config->files 238 238 // return the pmFPAfile (a view to the one saved on config->files) 239 pmFPAfile *pmFPAfileDefineFromArgs (bool *found, pmConfig *config, const char *filename, const char *argname)239 pmFPAfile *pmFPAfileDefineFromArgs(bool *found, pmConfig *config, const char *filename, const char *argname) 240 240 { 241 241 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 406 406 // save the pmFPAfile on config->files 407 407 // return the pmFPAfile (a view to the one saved on config->files) 408 pmFPAfile *pmFPAfileBindFromArgs (bool *found, pmFPAfile *input, pmConfig *config, const char *filename, const char *argname)408 pmFPAfile *pmFPAfileBindFromArgs (bool *found, pmFPAfile *input, const pmConfig *config, const char *filename, const char *argname) 409 409 { 410 410 PS_ASSERT_PTR_NON_NULL(input, NULL); … … 641 641 // define the named pmFPAfile from the camera->config 642 642 // only valid for pmFPAfile->mode = READ 643 pmFPAfile *pmFPAfileDefineFromConf (bool *found, pmConfig *config, const char *filename)643 pmFPAfile *pmFPAfileDefineFromConf (bool *found, const pmConfig *config, const char *filename) 644 644 { 645 645 PS_ASSERT_PTR_NON_NULL(config, false); … … 703 703 // save the pmFPAfile on config->files 704 704 // return the pmFPAfile (a view to the one saved on config->files) 705 pmFPAfile *pmFPAfileDefineFromDetDB (bool *found, pmConfig *config, const char *filename,705 pmFPAfile *pmFPAfileDefineFromDetDB (bool *found, const pmConfig *config, const char *filename, 706 706 pmFPA *input, pmDetrendType type) 707 707 { … … 860 860 // create a new output pmFPAfile based on an existing FPA 861 861 // only valid for pmFPAfile->mode == WRITE (or internal?) 862 pmFPAfile *pmFPAfileDefineFromFPA ( pmConfig *config, pmFPA *src, int xBin, int yBin, const char *filename)862 pmFPAfile *pmFPAfileDefineFromFPA (const pmConfig *config, pmFPA *src, int xBin, int yBin, const char *filename) 863 863 { 864 864 PS_ASSERT_PTR_NON_NULL(config, false); … … 896 896 // create a new output pmFPAfile based on an existing FPA 897 897 // only valid for pmFPAfile->mode == WRITE (or internal?) 898 pmFPAfile *pmFPAfileDefineNewCamera ( pmConfig *config, const char *filename)898 pmFPAfile *pmFPAfileDefineNewCamera (const pmConfig *config, const char *filename) 899 899 { 900 900 PS_ASSERT_PTR_NON_NULL(config, false); … … 915 915 } 916 916 917 pmFPAfile *pmFPAfileDefineChipMosaic( pmConfig *config, pmFPA *src, const char *filename)917 pmFPAfile *pmFPAfileDefineChipMosaic(const pmConfig *config, pmFPA *src, const char *filename) 918 918 { 919 919 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 989 989 } 990 990 991 pmFPAfile *pmFPAfileDefineFPAMosaic( pmConfig *config, pmFPA *src, const char *filename)991 pmFPAfile *pmFPAfileDefineFPAMosaic(const pmConfig *config, pmFPA *src, const char *filename) 992 992 { 993 993 PS_ASSERT_PTR_NON_NULL(config, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.
