Changeset 2671 for trunk/src/STGrid.h
- Timestamp:
- 10/18/12 18:36:25 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STGrid.h
r2669 r2671 61 61 string scenter="" ) ; 62 62 void setFunc( string convtype="box", 63 int convsupport=-1 ) ; 63 int convsupport=-1, 64 string truncate="", 65 string gwidth="", 66 string jwidth="" ) ; 64 67 65 68 void setWeight( const string wType="uniform" ) ; … … 71 74 72 75 string saveData( string outfile="" ) ; 76 77 // support function to know how grid function looks like 78 vector<float> getConvFunc(); 73 79 74 80 //private: … … 138 144 void boxFunc( Vector<Float> &convFunc, Int &convSize ) ; 139 145 void spheroidalFunc( Vector<Float> &convFunc ) ; 140 void gaussFunc( Vector<Float> &convFunc ) ; 146 void gaussFunc( Vector<Float> &convFunc, Double hwhm, Double truncate ) ; 147 void gjincFunc( Vector<Float> &convFunc, Double hwhm, Double c, Double truncate ); 141 148 void pbFunc( Vector<Float> &convFunc ) ; 142 149 void setConvFunc( Vector<Float> &convFunc ) ; … … 232 239 Int convSupport_ ; 233 240 Int userSupport_ ; 241 String gwidth_; 242 String jwidth_; 243 String truncate_; 234 244 Int convSampling_ ; 235 245 Vector<uInt> pollist_ ;
Note:
See TracChangeset
for help on using the changeset viewer.