Main Page | Class Hierarchy | Alphabetical List | Data Structures | File List | Data Fields | Globals

rtmrawavcoef.h File Reference

Go to the source code of this file.

Functions

void rtmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const int *mracoef, const int &a, const int &m, int &wavcoef)
void rtmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const double *mracoef, const int &a, const int &m, double &wavcoef)
void rtmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const float *mracoef, const int &a, const int &m, float &wavcoef)
void rtmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const int *mracoef, const int &m, int &wavcoef)
void rtmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const double *mracoef, const int &m, double &wavcoef)
void rtmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const float *mracoef, const int &m, float &wavcoef)


Function Documentation

void rtmrawavcoef const int Asize,
const int Msize,
const int amax,
const int mmax,
const int mrastep,
const int mracoef,
const int a,
const int m,
int wavcoef
 

Definition at line 166 of file rtmrawavcoef.cpp.

References iartmrawavcoef1_().

Referenced by Rtmra< Data_t, scalar >.wav(), and Rtmra< Data_t, array >.wav().

00176   {
00177 
00178 #ifdef STORM_USEF
00179 
00180    iartmrawavcoef1_(
00181      &Asize, &Msize,
00182      &amax, &mmax,
00183      &mrastep, mracoef,
00184      &a, &m, &wavcoef
00185    );
00186 
00187 #else
00188 
00189 //   if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax) ) {
00190       wavcoef = mracoef[ a*2*Msize + 2*m +1 ];
00191 //   } 
00192 //   else { 
00193 //      wavcoef = 1/0; 
00194 //   }
00195 
00196 #endif
00197 
00198 }

void rtmrawavcoef const int Asize,
const int Msize,
const int amax,
const int mmax,
const int mrastep,
const double *  mracoef,
const int a,
const int m,
double &  wavcoef
 

Definition at line 132 of file rtmrawavcoef.cpp.

References dartmrawavcoef1_().

00142   {
00143 
00144 #ifdef STORM_USEF
00145 
00146    dartmrawavcoef1_(
00147      &Asize, &Msize,
00148      &amax, &mmax,
00149      &mrastep, mracoef,
00150      &a, &m, &wavcoef
00151    );
00152 
00153 #else
00154 
00155 //   if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax) ) {
00156       wavcoef = mracoef[ a*2*Msize + 2*m +1 ];
00157 //   } 
00158 //   else { 
00159 //      wavcoef = 1.0/0; 
00160 //   }
00161 
00162 #endif
00163 
00164 }

void rtmrawavcoef const int Asize,
const int Msize,
const int amax,
const int mmax,
const int mrastep,
const float *  mracoef,
const int a,
const int m,
float &  wavcoef
 

Definition at line 97 of file rtmrawavcoef.cpp.

References artmrawavcoef1_().

00107   {
00108 
00109 #ifdef STORM_USEF
00110 
00111    artmrawavcoef1_(
00112      &Asize, &Msize,
00113      &amax, &mmax,
00114      &mrastep, mracoef,
00115      &a, &m, &wavcoef
00116    );
00117 
00118 #else
00119 
00120 //   if ( ( a >= 0 ) && ( a <= amax ) && ( m>= 0 ) && ( m <= mmax ) ) {
00121       wavcoef = mracoef[ a*2*Msize + 2*m +1 ];
00122 //   } 
00123 //   else { 
00124 //      wavcoef = 1.0/0; 
00125 //   }
00126 
00127 #endif
00128 
00129 }

void rtmrawavcoef const int Msize,
const int mmax,
const int mrastep,
const int mracoef,
const int m,
int wavcoef
 

Definition at line 70 of file rtmrawavcoef.cpp.

References irtmrawavcoef_().

00077   { 
00078 
00079 #ifdef STORM_USEF
00080 
00081    irtmrawavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00082 
00083 #else
00084 
00085 //   if ( ( m >= 0 ) && ( m <= mmax ) ) { 
00086        wavcoef = mracoef[ 2*m + 1 ]; 
00087 //   }
00088 //   else { 
00089 //      wavcoef = 1/0; 
00090 //   }
00091 
00092 #endif
00093 
00094 }

void rtmrawavcoef const int Msize,
const int mmax,
const int mrastep,
const double *  mracoef,
const int m,
double &  wavcoef
 

Definition at line 43 of file rtmrawavcoef.cpp.

References drtmrawavcoef_().

00050   { 
00051 
00052 #ifdef STORM_USEF
00053 
00054    drtmrawavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00055 
00056 #else
00057 
00058 //   if ( ( m >= 0 ) && ( m <= mmax ) ) { 
00059        wavcoef = mracoef[ 2*m + 1 ]; 
00060 //   }
00061 //   else { 
00062 //      wavcoef = 1.0/0; 
00063 //   }
00064 
00065 #endif
00066 
00067 }

void rtmrawavcoef const int Msize,
const int mmax,
const int mrastep,
const float *  mracoef,
const int m,
float &  wavcoef
 

Definition at line 16 of file rtmrawavcoef.cpp.

References rtmrawavcoef_().

00023   { 
00024 
00025 #ifdef STORM_USEF
00026 
00027    rtmrawavcoef_( &Msize, &mmax, &mrastep, mracoef, &m, &wavcoef );
00028 
00029 #else
00030 
00031 //   if ( ( m >=  0 ) && ( m <= mmax ) ) { 
00032       wavcoef = mracoef[ 2*m +1 ]; 
00033 //   }
00034 //   else { 
00035 //      wavcoef = 1.0/0; 
00036 //   }
00037 
00038 #endif
00039 
00040 } 


Generated on Mon May 31 21:40:33 2004 for SR2k4 Assembler by doxygen 1.3.6