Changeset 750 in Sophya for trunk/SophyaLib
- Timestamp:
- Mar 2, 2000, 11:53:47 AM (26 years ago)
- Location:
- trunk/SophyaLib/NTools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/NTools.o.list
r718 r750 1 arrfitter.o 1 2 cimage.o 2 3 cspline.o … … 20 21 generaldata.o 21 22 generalfit.o 22 hisprof.o23 histos.o24 histos2.o25 23 imageop.o 26 24 integ.o … … 33 31 nbtri.o 34 32 ntupintf.o 35 ntuple.o36 33 outilsinit.o 37 34 perandom.o … … 42 39 strutil.o 43 40 tabmath.o 44 tmatrix.o45 tvector.o46 41 utils.o 47 xntuple.o -
trunk/SophyaLib/NTools/exclude
r220 r750 1 -
trunk/SophyaLib/NTools/fftservintf.cc
r717 r750 18 18 void FFTServerInterface::FFTForward(TVector< complex<r_8> > const &, TVector< complex<r_8> > &) 19 19 { 20 throw ForbiddenError("FFTServer::FFTForward(TVector...) Unsupported operation !");20 throw NotAvailableOperation("FFTServer::FFTForward(TVector...) Unsupported operation !"); 21 21 } 22 22 … … 24 24 void FFTServerInterface::FFTBackward(TVector< complex<r_8> > const &, TVector< complex<r_8> > &) 25 25 { 26 throw ForbiddenError("FFTServer::FFTBackward(TVector...) Unsupported operation !");26 throw NotAvailableOperation("FFTServer::FFTBackward(TVector...) Unsupported operation !"); 27 27 } 28 28 … … 30 30 void FFTServerInterface::FFTForward(TVector< r_8 > const &, TVector< complex<r_8> > &) 31 31 { 32 throw ForbiddenError("FFTServer::FFTForward(TVector...) Unsupported operation !");32 throw NotAvailableOperation("FFTServer::FFTForward(TVector...) Unsupported operation !"); 33 33 } 34 34 … … 36 36 void FFTServerInterface::FFTBackward(TVector< complex<r_8> > const &, TVector< r_8 > &) 37 37 { 38 throw ForbiddenError("FFTServer::FFTBackward(TVector...) Unsupported operation !");38 throw NotAvailableOperation("FFTServer::FFTBackward(TVector...) Unsupported operation !"); 39 39 } 40 40 … … 42 42 void FFTServerInterface::FFTForward(TMatrix< complex<r_8> > const &, TMatrix< complex<r_8> > &) 43 43 { 44 throw ForbiddenError("FFTServer::FFTForward(TMatrix...) Unsupported operation !");44 throw NotAvailableOperation("FFTServer::FFTForward(TMatrix...) Unsupported operation !"); 45 45 } 46 46 … … 48 48 void FFTServerInterface::FFTBackward(TMatrix< complex<r_8> > const &, TMatrix< complex<r_8> > &) 49 49 { 50 throw ForbiddenError("FFTServer::FFTBackward(TMatrix...) Unsupported operation !");50 throw NotAvailableOperation("FFTServer::FFTBackward(TMatrix...) Unsupported operation !"); 51 51 } 52 52 … … 54 54 void FFTServerInterface::FFTForward(TMatrix< r_8 > const &, TMatrix< complex<r_8> > &) 55 55 { 56 throw ForbiddenError("FFTServer::FFTForward(TMatrix...) Unsupported operation !");56 throw NotAvailableOperation("FFTServer::FFTForward(TMatrix...) Unsupported operation !"); 57 57 } 58 58 … … 60 60 void FFTServerInterface::FFTBackward(TMatrix< complex<r_8> > const &, TMatrix< r_8 > &) 61 61 { 62 throw ForbiddenError("FFTServer::FFTBackward(TMatrix...) Unsupported operation !");62 throw NotAvailableOperation("FFTServer::FFTBackward(TMatrix...) Unsupported operation !"); 63 63 } 64 64 … … 69 69 void FFTServerInterface::FFTForward(TVector< complex<r_4> > const &, TVector< complex<r_4> > &) 70 70 { 71 throw ForbiddenError("FFTServer::FFTForward(TVector r_4 ... ) Unsupported operation !");71 throw NotAvailableOperation("FFTServer::FFTForward(TVector r_4 ... ) Unsupported operation !"); 72 72 } 73 73 … … 75 75 void FFTServerInterface::FFTBackward(TVector< complex<r_4> > const &, TVector< complex<r_4> > &) 76 76 { 77 throw ForbiddenError("FFTServer::FFTBackward(TVector r_4 ... ) Unsupported operation !");77 throw NotAvailableOperation("FFTServer::FFTBackward(TVector r_4 ... ) Unsupported operation !"); 78 78 } 79 79 … … 81 81 void FFTServerInterface::FFTForward(TVector< r_4 > const &, TVector< complex<r_4> > &) 82 82 { 83 throw ForbiddenError("FFTServer::FFTForward(TVector r_4 ... ) Unsupported operation !");83 throw NotAvailableOperation("FFTServer::FFTForward(TVector r_4 ... ) Unsupported operation !"); 84 84 } 85 85 … … 87 87 void FFTServerInterface::FFTBackward(TVector< complex<r_4> > const &, TVector< r_4 > &) 88 88 { 89 throw ForbiddenError("FFTServer::FFTBackward(TVector r_4 ... ) Unsupported operation !");89 throw NotAvailableOperation("FFTServer::FFTBackward(TVector r_4 ... ) Unsupported operation !"); 90 90 } 91 91 … … 93 93 void FFTServerInterface::FFTForward(TMatrix< complex<r_4> > const &, TMatrix< complex<r_4> > &) 94 94 { 95 throw ForbiddenError("FFTServer::FFTForward(TMatrix r_4 ... ) Unsupported operation !");95 throw NotAvailableOperation("FFTServer::FFTForward(TMatrix r_4 ... ) Unsupported operation !"); 96 96 } 97 97 … … 99 99 void FFTServerInterface::FFTBackward(TMatrix< complex<r_4> > const &, TMatrix< complex<r_4> > &) 100 100 { 101 throw ForbiddenError("FFTServer::FFTBackward(TMatrix r_4 ... ) Unsupported operation !");101 throw NotAvailableOperation("FFTServer::FFTBackward(TMatrix r_4 ... ) Unsupported operation !"); 102 102 } 103 103 … … 105 105 void FFTServerInterface::FFTForward(TMatrix< r_4 > const &, TMatrix< complex<r_4> > &) 106 106 { 107 throw ForbiddenError("FFTServer::FFTForward(TMatrix r_4 ... ) Unsupported operation !");107 throw NotAvailableOperation("FFTServer::FFTForward(TMatrix r_4 ... ) Unsupported operation !"); 108 108 } 109 109 … … 111 111 void FFTServerInterface::FFTBackward(TMatrix< complex<r_4> > const &, TMatrix< r_4 > &) 112 112 { 113 throw ForbiddenError("FFTServer::FFTBackward(TMatrix r_4 ... ) Unsupported operation !");113 throw NotAvailableOperation("FFTServer::FFTBackward(TMatrix r_4 ... ) Unsupported operation !"); 114 114 } 115 115
Note:
See TracChangeset
for help on using the changeset viewer.