Go to the source code of this file.
Functions | |
| void | rtmraputwavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, int *mracoef, const int &a, const int &m, const int &wavcoef) |
| void | rtmraputwavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, double *mracoef, const int &a, const int &m, const double &wavcoef) |
| void | rtmraputwavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, float *mracoef, const int &a, const int &m, const float &wavcoef) |
| void | rtmraputwavcoef (const int &Msize, const int &mmax, const int &mrastep, int *mracoef, const int &m, const int &wavcoef) |
| void | rtmraputwavcoef (const int &Msize, const int &mmax, const int &mrastep, double *mracoef, const int &m, const double &wavcoef) |
| void | rtmraputwavcoef (const int &Msize, const int &mmax, const int &mrastep, float *mracoef, const int &m, const float &wavcoef) |
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 116 of file rtmraputwavcoef.cpp. References iartmraputwavcoef1_(). Referenced by Rtmra< Data_t, scalar >.wav(), and Rtmra< Data_t, array >.wav().
00126 {
00127 #ifdef STORM_USEF
00128 iartmraputwavcoef1_(
00129 &Asize, &Msize,
00130 &amax, &mmax,
00131 &mrastep, mracoef,
00132 &a, &m, &wavcoef
00133 );
00134 #else
00135 if ( ( a >= 0 ) && ( a <=amax ) && ( m >= 0 ) && ( m <= mmax) ) {
00136 mracoef[ a*2*Msize + 2*m +1 ] = wavcoef;
00137 }
00138 #endif
00139 }
|
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 90 of file rtmraputwavcoef.cpp. References dartmraputwavcoef1_().
00100 {
00101 #ifdef STORM_USEF
00102 dartmraputwavcoef1_(
00103 &Asize, &Msize,
00104 &amax, &mmax,
00105 &mrastep, mracoef,
00106 &a, &m, &wavcoef
00107 );
00108 #else
00109 if ( ( a >= 0 ) && ( a <=amax ) && ( m >= 0 ) && ( m <= mmax) ) {
00110 mracoef[ a*2*Msize + 2*m +1 ] = wavcoef;
00111 }
00112 #endif
00113 }
|
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 64 of file rtmraputwavcoef.cpp. References artmraputwavcoef1_().
00074 {
00075 #ifdef STORM_USEF
00076 artmraputwavcoef1_(
00077 &Asize, &Msize,
00078 &amax, &mmax,
00079 &mrastep, mracoef,
00080 &a, &m, &wavcoef
00081 );
00082 #else
00083 if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax)) {
00084 mracoef[ a*2*Msize + 2*m + 1 ] = wavcoef;
00085 }
00086 #endif
00087 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 48 of file rtmraputwavcoef.cpp. References irtmraputwavcoef_().
00055 {
00056 #ifdef STORM_USEF
00057 irtmraputwavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00058 #else
00059 if ( ( m >= 0 ) && ( m <= mmax ) ) { mracoef[ 2*m + 1 ]=wavcoef; }
00060 #endif
00061 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 32 of file rtmraputwavcoef.cpp. References drtmraputwavcoef_().
00039 {
00040 #ifdef STORM_USEF
00041 drtmraputwavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00042 #else
00043 if ( ( m >= 0 ) && ( m <= mmax ) ) { mracoef[ 2*m + 1 ]=wavcoef; }
00044 #endif
00045 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 16 of file rtmraputwavcoef.cpp. References rtmraputwavcoef_().
00023 {
00024 #ifdef STORM_USEF
00025 rtmraputwavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00026 #else
00027 if ( ( m >= 0 ) && ( m <= mmax ) ) { mracoef[ 2*m + 1 ] = wavcoef; }
00028 #endif
00029 }
|
1.3.6