Changeset 17832 for trunk/psModules/src/objects
- Timestamp:
- May 28, 2008, 11:48:49 AM (18 years ago)
- Location:
- trunk/psModules/src/objects
- Files:
-
- 3 edited
-
pmSource.c (modified) (2 diffs)
-
pmSourceIO.c (modified) (4 diffs)
-
pmSourceIO.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmSource.c
r17396 r17832 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.5 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-0 4-08 18:35:38$8 * @version $Revision: 1.53 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-05-28 21:48:49 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 875 875 psF32 **target = source->pixels->data.F32; 876 876 if (mode & PM_MODEL_OP_NOISE) { 877 // XXX need to scale by the gain... 877 878 target = source->weight->data.F32; 878 879 } -
trunk/psModules/src/objects/pmSourceIO.c
r17826 r17832 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.5 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-05-28 18:57:01$5 * @version $Revision: 1.59 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-05-28 21:48:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 886 886 887 887 if (view->chip == -1) { 888 bool exists = pmFPACheckDataStatusForSources (fpa, name);888 bool exists = pmFPACheckDataStatusForSources (fpa, file->name); 889 889 return exists; 890 890 } … … 896 896 897 897 if (view->cell == -1) { 898 bool exists = pmChipCheckDataStatusForSources (chip, name);898 bool exists = pmChipCheckDataStatusForSources (chip, file->name); 899 899 return exists; 900 900 } … … 906 906 907 907 if (view->readout == -1) { 908 bool exists = pmCellCheckDataStatusForSources (cell, name);908 bool exists = pmCellCheckDataStatusForSources (cell, file->name); 909 909 return exists; 910 910 } -
trunk/psModules/src/objects/pmSourceIO.h
r17396 r17832 4 4 * @author EAM, IfA; GLG, MHPCC 5 5 * 6 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $7 * @date $Date: 2008-0 4-08 18:35:38$6 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-05-28 21:48:49 $ 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 9 * … … 57 57 58 58 bool pmFPAviewCheckDataStatusForSources (const pmFPAview *view, const pmFPAfile *file); 59 bool pmFPACheckDataStatusForSources (const pmFPA *fpa );60 bool pmChipCheckDataStatusForSources (const pmChip *chip );61 bool pmCellCheckDataStatusForSources (const pmCell *cell );62 bool pmReadoutCheckDataStatusForSources (const pmReadout *readout );59 bool pmFPACheckDataStatusForSources (const pmFPA *fpa, const char *name); 60 bool pmChipCheckDataStatusForSources (const pmChip *chip, const char *name); 61 bool pmCellCheckDataStatusForSources (const pmCell *cell, const char *name); 62 bool pmReadoutCheckDataStatusForSources (const pmReadout *readout, const char *name); 63 63 64 64 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
