Changeset 1204 in Sophya for trunk/SophyaLib/NTools/objfitter.cc
- Timestamp:
- Sep 29, 2000, 12:15:55 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/objfitter.cc
r1110 r1204 6 6 //=========================================================================== 7 7 //=========================================================================== 8 9 TMatrix<int_4> 10 ObjectFitter::FitResidus(TMatrix<int_4> const & mtx, GeneralFit& gfit, 11 double xorg, double yorg, double dx, double dy) 12 { 13 return( ArrayFitter<int_4>::FitResidus(mtx, gfit, xorg, yorg, dx, dy) ); 14 } 8 15 9 16 TMatrix<r_4> … … 21 28 } 22 29 30 TMatrix<int_4> 31 ObjectFitter::FitFunction(TMatrix<int_4> const & mtx, GeneralFit& gfit, 32 double xorg, double yorg, double dx, double dy) 33 { 34 return( ArrayFitter<int_4>::FitFunction(mtx, gfit, xorg, yorg, dx, dy) ); 35 } 36 23 37 TMatrix<r_4> 24 38 ObjectFitter::FitFunction(TMatrix<r_4> const & mtx, GeneralFit& gfit, … … 35 49 } 36 50 51 TVector<int_4> 52 ObjectFitter::FitResidus(TVector<int_4> const & vec, GeneralFit& gfit, 53 double xorg, double dx) 54 { 55 return( ArrayFitter<int_4>::FitResidus(vec, gfit, xorg, dx) ); 56 } 57 37 58 TVector<r_4> 38 59 ObjectFitter::FitResidus(TVector<r_4> const & vec, GeneralFit& gfit, … … 47 68 { 48 69 return( ArrayFitter<r_8>::FitResidus(vec, gfit, xorg, dx) ); 70 } 71 72 TVector<int_4> 73 ObjectFitter::FitFunction(TVector<int_4> const & vec, GeneralFit& gfit, 74 double xorg, double dx) 75 { 76 return( ArrayFitter<int_4>::FitFunction(vec, gfit, xorg, dx) ); 49 77 } 50 78 … … 356 384 /////////////////////////////////////////////////////////////// 357 385 #ifdef __CXX_PRAGMA_TEMPLATES__ 386 #pragma define_template ArrayFitter<int_4> 358 387 #pragma define_template ArrayFitter<r_4> 359 388 #pragma define_template ArrayFitter<r_8> 389 #pragma define_template ArrayFitter< complex<r_4> > 390 #pragma define_template ArrayFitter< complex<r_8> > 360 391 #endif 361 392 362 393 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 394 template class ArrayFitter<int_4>; 363 395 template class ArrayFitter<r_4>; 364 396 template class ArrayFitter<r_8>; 397 template class ArrayFitter< complex<r_4> >; 398 template class ArrayFitter< complex<r_8> >; 365 399 #endif 366 400
Note:
See TracChangeset
for help on using the changeset viewer.