IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 6, 2014, 9:33:47 AM (12 years ago)
Author:
eugene
Message:

add automatic neighbor search to region hosts

File:
1 edited

Legend:

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

    r36575 r36576  
    286286
    287287// A RegionHost processes data for some region in parallel with other regions
    288 typedef struct {
    289   double Rmin;
    290   double Rmax;
    291   double Dmin;
    292   double Dmax;
    293 
    294   double RminCat;
    295   double RmaxCat;
    296   double DminCat;
     288typedef struct RegionHostInfo {
     289  double Rmin;        // (Rmin,Rmax),(Dmin,Dmax) arehard RA,DEC boundaries of the
     290  double Rmax;        // region for which each host is responsible.  A given host
     291  double Dmin;        // calibrates the images for which the fiducial point (center)
     292  double Dmax;        // lands in the region, and all objects in the region
     293
     294  double RminCat;      // (RminCat,RmaxCat),(DminCat,DmaxCat) are the region for which
     295  double RmaxCat;      // the catalogs need to be loaded : this is the outer bounds
     296  double DminCat;      // of the region containing all images completely
    297297  double DmaxCat;
    298298
     
    310310  Image *image;
    311311  off_t *imseq;
     312
     313  int *neighbors;
     314  int Nneighbors;
    312315} RegionHostInfo;
    313316
Note: See TracChangeset for help on using the changeset viewer.