Changeset 1069 in Sophya for trunk/SophyaLib/NTools
- Timestamp:
- Jul 13, 2000, 12:19:00 AM (25 years ago)
- Location:
- trunk/SophyaLib/NTools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/generalfit.cc
r984 r1069 1579 1579 TVector<r_8> GeneralFit::p_vers_tr(TVector<r_8> const& p) 1580 1580 { 1581 TVector<r_8> tr(p );1581 TVector<r_8> tr(p,false); 1582 1582 for(int i=0;i<mNPar;i++) { 1583 1583 if( fixParam[i] || ! boundParam[i] ) continue; … … 1614 1614 TVector<r_8> GeneralFit::tr_vers_p(TVector<r_8> const& tr) 1615 1615 { 1616 TVector<r_8> p(tr );1616 TVector<r_8> p(tr,false); 1617 1617 for(int i=0;i<mNPar;i++) { 1618 1618 if( fixParam[i] || ! boundParam[i] ) continue; … … 1650 1650 TVector<r_8> GeneralFit::dp_vers_dtr(TVector<r_8> const& dp,TVector<r_8> const& tr) 1651 1651 { 1652 TVector<r_8> dtr(dp );1652 TVector<r_8> dtr(dp,false); 1653 1653 for(int i=0;i<mNPar;i++) { 1654 1654 if( fixParam[i] || ! boundParam[i] ) continue; … … 1686 1686 TVector<r_8> GeneralFit::dtr_vers_dp(TVector<r_8> const& dtr,TVector<r_8> const& tr) 1687 1687 { 1688 TVector<r_8> dp(dtr );1688 TVector<r_8> dp(dtr,false); 1689 1689 for(int i=0;i<mNPar;i++) { 1690 1690 if( fixParam[i] || ! boundParam[i] ) continue; … … 1734 1734 changed = true; 1735 1735 if(debugLevel>=2) 1736 cout<<"put_in_limits_for_deriv(min) p["<<i<<" }="<<p(i)<<" >="1736 cout<<"put_in_limits_for_deriv(min) p["<<i<<"]="<<p(i)<<" >=" 1737 1737 <<minParam(i)<<" .. dp="<<dp_old<<" -> dp="<<dp(i)<<endl; 1738 1738 } -
trunk/SophyaLib/NTools/ntoolsinit.cc
r926 r1069 39 39 40 40 PPRegister(ObjFileIO<GeneralFitData>); 41 DObjRegister(ObjFileIO<GeneralFitData>, GeneralFitData); 41 42 42 43 PPRegister(RzImage);
Note:
See TracChangeset
for help on using the changeset viewer.