IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 11, 2014, 6:15:41 AM (12 years ago)
Author:
eugene
Message:

working on relphot -parallel-regions

File:
1 edited

Legend:

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

    r36490 r36503  
    284284  short *index;
    285285} HostTable;
     286
     287// A RegionHost processes data for some region in parallel with other regions
     288typedef struct {
     289  double Rmin;
     290  double Rmax;
     291  double Dmin;
     292  double Dmax;
     293  int hostID;                 // remove machine ID in SkyTable
     294  int stdio[3];               // fd's for communication with the remote host
     295  int pid;                    // remote process ID
     296  char *hostname;
     297  ImageSubset *image;
     298  int line_numbers;
     299} RegionHostInfo;
     300
     301typedef struct {
     302  int Nhosts;
     303  RegionHostInfo *hosts;
     304  short *index;
     305} RegionHostTable;
    286306
    287307// special-case function:
Note: See TracChangeset for help on using the changeset viewer.