Changeset 18845
- Timestamp:
- 11/25/14 08:58:28 (10 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/Makefile.am
r18825 r18845 856 856 ./classes/kriging/Quadtree.h\ 857 857 ./classes/kriging/Quadtree.cpp\ 858 ./classes/kriging/Covertree.h\ 859 ./classes/kriging/Covertree.cpp\ 858 860 ./classes/kriging/Observation.h\ 859 861 ./classes/kriging/Observation.cpp\ -
issm/trunk-jpl/src/c/classes/kriging/Observations.cpp
r18521 r18845 23 23 24 24 #include "./Quadtree.h" 25 #include "./Covertree.h" 25 26 #include "./Variogram.h" 26 27 #include "../../toolkits/toolkits.h" … … 31 32 /*Object constructors and destructor*/ 32 33 Observations::Observations(){/*{{{*/ 33 this->quadtree = NULL; 34 this->treetype = 0; 35 this->quadtree = NULL; 36 this->covertree = NULL; 34 37 return; 35 38 } 36 39 /*}}}*/ 37 40 Observations::Observations(IssmPDouble* observations_list,IssmPDouble* x,IssmPDouble* y,int n,Options* options){/*{{{*/ 41 42 /*Check that there are observations*/ 43 if(n<=0) _error_("No observation found"); 44 45 /*Get tree type*/ 46 options->Get(&this->treetype,"treetype",1); 47 switch(this->treetype){ 48 case 1: 49 this->covertree = NULL; 50 this->InitQuadtree(observations_list,x,y,n,options); 51 break; 52 case 2: 53 this->quadtree = NULL; 54 this->InitCovertree(observations_list,x,y,n,options); 55 break; 56 default: 57 _error_("Tree type "<<this->treetype<<" not supported yet (1: quadtree, 2: covertree)"); 58 } 59 60 61 62 } 63 /*}}}*/ 64 Observations::~Observations(){/*{{{*/ 65 switch(this->treetype){ 66 case 1: 67 delete this->quadtree; 68 break; 69 case 2: 70 delete this->covertree; 71 break; 72 default: 73 _error_("Tree type "<<this->treetype<<" not supported yet (1: quadtree, 2: covertree)"); 74 } 75 return; 76 } 77 /*}}}*/ 78 79 /*Initialize data structures*/ 80 void Observations::InitQuadtree(IssmPDouble* observations_list,IssmPDouble* x,IssmPDouble* y,int n,Options* options){/*{{{*/ 38 81 39 82 /*Intermediaries*/ … … 44 87 Observation *observation = NULL; 45 88 46 /*Check that observations is not empty*/47 if(n==0) _error_("No observation found");89 /*Checks*/ 90 _assert_(n); 48 91 49 92 /*Get extrema*/ … … 110 153 } 111 154 /*}}}*/ 112 Observations::~Observations(){/*{{{*/ 113 delete quadtree; 114 return; 155 void Observations::InitCovertree(IssmPDouble* observations_list,IssmPDouble* x,IssmPDouble* y,int n,Options* options){/*{{{*/ 156 157 _error_("Not supported yet"); 158 115 159 } 116 160 /*}}}*/ … … 510 554 void Observations::QuadtreeColoring(IssmPDouble* A,IssmPDouble *x,IssmPDouble *y,int n){/*{{{*/ 511 555 556 if(this->treetype!=1) _error_("Tree type is not quadtree"); 512 557 int xi,yi,level; 513 558 -
issm/trunk-jpl/src/c/classes/kriging/Observations.h
r15067 r18845 3 3 4 4 class Quadtree; 5 class Covertree; 5 6 class Variogram; 6 7 class Options; … … 16 17 17 18 private: 18 Quadtree* quadtree; 19 int treetype; 20 Quadtree* quadtree; 21 Covertree* covertree; 19 22 20 23 public: … … 24 27 Observations(IssmDouble* observations_list,IssmDouble* x,IssmDouble* y,int n,Options* options); 25 28 ~Observations(); 29 30 /*Initialize data structures*/ 31 void InitQuadtree(IssmDouble* observations_list,IssmDouble* x,IssmDouble* y,int n,Options* options); 32 void InitCovertree(IssmDouble* observations_list,IssmDouble* x,IssmDouble* y,int n,Options* options); 26 33 27 34 /*Methods*/ -
issm/trunk-jpl/src/c/classes/kriging/krigingobjects.h
r14996 r18845 13 13 #include "./PowerVariogram.h" 14 14 #include "./Quadtree.h" 15 #include "./Covertree.h" 15 16 #include "./Observation.h" 16 17 #include "./Observations.h"
Note:
See TracChangeset
for help on using the changeset viewer.