Changeset 12225 for issm/trunk-jpl/src/c/objects/Kriging/Quadtree.h
- Timestamp:
- 05/08/12 11:10:50 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Kriging/Quadtree.h
r12216 r12225 16 16 class QuadtreeBox: public Object{ 17 17 public: 18 int nbitems; // number of current vertices in the box 18 int nbitems; // number of current vertices in the box 19 double xcenter; // x position of the center (double) 20 double ycenter; // x position of the center (double) 21 double length; // width of the box 19 22 union{ 20 23 QuadtreeBox *box[4]; … … 23 26 24 27 /*Object functions (Needed because the Quadtree uses a Container*/ 25 void Echo() {_error_("not implemented yet"); };28 void Echo(); 26 29 void DeepEcho() {_error_("not implemented yet"); }; 27 30 int Id() {_error_("not implemented yet"); }; … … 35 38 36 39 public: 37 int MaxDepth; // maximum number of subdivision 38 QuadtreeBox *root; // main box 39 long NbQuadtreeBox; // total number of boxes 40 long NbObs; // number of points 40 int MaxDepth; // maximum number of subdivision 41 double coordconversion; // Coefficient to convert coordinates to integer 42 QuadtreeBox *root; // main box 43 long NbQuadtreeBox; // total number of boxes 44 long NbObs; // number of points 41 45 42 46 Quadtree(); 47 Quadtree(double xmin,double xmax,double ymin,double ymax,int maxdepth_in); 43 48 ~Quadtree(); 49 void Add(Observation *observation); 50 void DeepEcho(void); 44 51 void Echo(void); 45 void Add(Observation *observation); 46 void QuadtreeColoring(double *A,int *xi,int *yi,int n); 47 QuadtreeBox *NewQuadtreeBox(void); 52 void IntergerCoordinates(int *xi,int *yi,double x,double y); 53 QuadtreeBox *NewQuadtreeBox(double xcenter,double ycenter,double length); 54 QuadtreeBox *NewQuadtreeBox(QuadtreeBox* master,int index); 55 void QuadtreeColoring(double *A,int xi,int yi); 48 56 }; 49 57 #endif //_QUADTREEK_H
Note:
See TracChangeset
for help on using the changeset viewer.