00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 # ifndef PM_PSF_IO_H
00016 # define PM_PSF_IO_H
00017
00018 psMetadata *pmPSFtoMD (psMetadata *metadata, pmPSF *psf);
00019 pmPSF *pmPSFfromMD (psMetadata *metadata);
00020 bool pmFPAviewWritePSFmodel (const pmFPAview *view, pmFPAfile *file);
00021 bool pmFPAWritePSFmodel (pmFPA *fpa, const pmFPAview *view, pmFPAfile *file);
00022 bool pmChipWritePSFmodel (pmChip *chip, const pmFPAview *view, pmFPAfile *file);
00023 bool pmCellWritePSFmodel (pmCell *cell, const pmFPAview *view, pmFPAfile *file);
00024 bool pmReadoutWritePSFmodel (pmReadout *readout, const pmFPAview *view, pmFPAfile *file);
00025
00026 bool pmFPAviewReadPSFmodel (const pmFPAview *view, pmFPAfile *file);
00027 bool pmFPAReadPSFmodel (pmFPA *fpa, const pmFPAview *view, pmFPAfile *file);
00028 bool pmChipReadPSFmodel (pmChip *chip, const pmFPAview *view, pmFPAfile *file);
00029 bool pmCellReadPSFmodel (pmCell *cell, const pmFPAview *view, pmFPAfile *file);
00030 bool pmReadoutReadPSFmodel (pmReadout *readout, const pmFPAview *view, pmFPAfile *file);
00031
00032 # endif