IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37008


Ignore:
Timestamp:
Jul 13, 2014, 11:21:41 AM (12 years ago)
Author:
eugene
Message:

deprecate unused internal fields from Catalog

Location:
branches/eam_branches/ipp-20140610/Ohana/src/libdvo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140610/Ohana/src/libdvo/include/dvo.h

    r37002 r37008  
    614614  off_t *found_t;
    615615  off_t *foundWarp_t;
    616   off_t *image_t;
    617   off_t *mosaic_t;
    618   float *X_t;
    619   float *Y_t;
     616//  off_t *image_t;
     617//  off_t *mosaic_t;
     618//  float *X_t;
     619//  float *Y_t;
    620620  int   *nOwn_t; // relastro uses this to count owned detections per object
    621621
  • branches/eam_branches/ipp-20140610/Ohana/src/libdvo/src/dvo_catalog.c

    r37004 r37008  
    486486
    487487  /* pointers for data manipulation */
    488   catalog[0].X_t = NULL;
    489   catalog[0].Y_t = NULL;
     488  // catalog[0].X_t = NULL;
     489  // catalog[0].Y_t = NULL;
     490  catalog[0].nOwn_t = NULL;
    490491  catalog[0].found_t = NULL;
    491   catalog[0].image_t = NULL;
    492   catalog[0].mosaic_t = NULL;
     492  // catalog[0].image_t = NULL;
     493  // catalog[0].mosaic_t = NULL;
    493494  catalog[0].foundWarp_t = NULL;
    494495}
     
    858859    catalog[0].lensobj = NULL;
    859860  }
    860   if (catalog[0].X_t)         free (catalog[0].X_t);
    861   if (catalog[0].Y_t)         free (catalog[0].Y_t);
     861  // if (catalog[0].X_t)      free (catalog[0].X_t);
     862  // if (catalog[0].Y_t)      free (catalog[0].Y_t);
     863  if (catalog[0].nOwn_t)      free (catalog[0].nOwn_t);
    862864  if (catalog[0].found_t)     free (catalog[0].found_t);
    863   if (catalog[0].image_t)     free (catalog[0].image_t);
    864   if (catalog[0].mosaic_t)    free (catalog[0].mosaic_t);
     865  // if (catalog[0].image_t)  free (catalog[0].image_t);
     866  // if (catalog[0].mosaic_t) free (catalog[0].mosaic_t);
    865867  if (catalog[0].foundWarp_t) free (catalog[0].foundWarp_t);
    866868}
Note: See TracChangeset for help on using the changeset viewer.