Changeset 38979
- Timestamp:
- Oct 27, 2015, 3:56:23 PM (11 years ago)
- Location:
- branches/eam_branches/ipp-20150625/Ohana/src/libdvo/src
- Files:
-
- 2 edited
-
AstromOffsetMapIO.c (modified) (1 diff)
-
dvo_catalog_split.c (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20150625/Ohana/src/libdvo/src/AstromOffsetMapIO.c
r38693 r38979 57 57 int i; 58 58 for (i = 0; i < Nblocks; i++) { 59 if (!gfits_fread_ftable_range (f, FALSE, &ftable, i*Nrows, Nrows)) myAbort ("problem 2");59 if (!gfits_fread_ftable_range (f, FALSE, FALSE, &ftable, i*Nrows, Nrows)) myAbort ("problem 2"); 60 60 61 61 AstromOffsetMap_Disk_6x6 *map_disk = gfits_table_get_AstromOffsetMap_Disk_6x6 (&ftable, &Nmap, NULL, NULL); -
branches/eam_branches/ipp-20150625/Ohana/src/libdvo/src/dvo_catalog_split.c
r38667 r38979 554 554 } 555 555 /* read Average table data : format is irrelevant here */ 556 if (!gfits_fread_ftable_range (catalog[0].f, FALSE, &ftable, start, Nrows)) {556 if (!gfits_fread_ftable_range (catalog[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 557 557 if (VERBOSE) fprintf (stderr, "can't read table average data"); 558 558 return (FALSE); … … 584 584 } 585 585 /* read Secfilt table data : format is irrelevant here */ 586 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start*catalog[0].Nsecfilt, catalog[0].Naverage*catalog[0].Nsecfilt)) {586 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start*catalog[0].Nsecfilt, catalog[0].Naverage*catalog[0].Nsecfilt)) { 587 587 if (VERBOSE) fprintf (stderr, "can't read table measure data"); 588 588 return (FALSE); … … 620 620 } 621 621 /* read Measure table data : format is irrelevant here */ 622 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {622 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 623 623 if (VERBOSE) fprintf (stderr, "can't read table measure data"); 624 624 return (FALSE); … … 651 651 } 652 652 /* read Missing table data : format is irrelevant here */ 653 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {653 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 654 654 if (VERBOSE) fprintf (stderr, "can't read table missing data"); 655 655 return (FALSE); … … 685 685 } 686 686 /* read Lensing table data : format is irrelevant here */ 687 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {687 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 688 688 if (VERBOSE) fprintf (stderr, "can't read table lensing data"); 689 689 return (FALSE); … … 716 716 } 717 717 /* read Lensobj table data : format is irrelevant here */ 718 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {718 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 719 719 if (VERBOSE) fprintf (stderr, "can't read table lensobj data"); 720 720 return (FALSE); … … 747 747 } 748 748 /* read StarPar table data : format is irrelevant here */ 749 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {749 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 750 750 if (VERBOSE) fprintf (stderr, "can't read table starpar data"); 751 751 return (FALSE); … … 778 778 } 779 779 /* read GalPhot table data : format is irrelevant here */ 780 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, &ftable, start, Nrows)) {780 if (!gfits_fread_ftable_range (subcat[0].f, FALSE, FALSE, &ftable, start, Nrows)) { 781 781 if (VERBOSE) fprintf (stderr, "can't read table galphot data"); 782 782 return (FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.
