IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39413


Ignore:
Timestamp:
Feb 28, 2016, 5:39:39 AM (10 years ago)
Author:
eugene
Message:

adding a memdump after the RA set_bincolumn seems to avoid the corruption (for now)

Location:
branches/eam_branches/ohana.20160226/src/relastro/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ohana.20160226/src/relastro/src/BrightCatalog.c

    r39411 r39413  
    358358    ohana_memcheck (1);
    359359
    360     my_memdump("start of define_bintable");
    361360    gfits_define_bintable_column (&theader, "D", "RA",       "ra",                         "degrees", 1.0, 0.0);
    362     my_memdump("after define_bintable RA");
    363 
    364361    gfits_define_bintable_column (&theader, "D", "DEC",      "dec",                        "degrees", 1.0, 0.0);
    365     my_memdump("after define_bintable DEC");
    366 
    367362    gfits_define_bintable_column (&theader, "E", "MAG_SYS",  "magnitude (sys)",             NULL,    1.0, 0.0);
    368363    gfits_define_bintable_column (&theader, "E", "MAG_CAL",  "magnitude (cal)",             NULL,    1.0, 0.0);
     
    433428    // add the columns to the output array
    434429    gfits_set_bintable_column (&theader, &ftable, "RA",         R,         catalog->Nmeasure);
     430
     431    fprintf (stderr, "--------------- after set_bintable RA --------------");
     432    ohana_memdump_file (stderr, TRUE);
     433   
    435434    gfits_set_bintable_column (&theader, &ftable, "DEC",        D,         catalog->Nmeasure);
    436435    gfits_set_bintable_column (&theader, &ftable, "MAG_SYS",    M,         catalog->Nmeasure);
  • branches/eam_branches/ohana.20160226/src/relastro/src/SetSignals.c

    r39402 r39413  
    5454
    5555void my_memdump (char *message) {
     56
     57  return;
    5658
    5759  fprintf (stderr, "%s\n", message);
Note: See TracChangeset for help on using the changeset viewer.