Go to the source code of this file.
Functions | |
| void | rtmramcycle (const int &Msize, const int &mmax, const int &mrastep, int &mcycle) |
|
||||||||||||||||||||
|
Definition at line 11 of file rtmramcycle.cpp. References rtmramcycle_().
00016 {
00017
00018 #ifdef STORM_USEF
00019
00020 rtmramcycle_( &Msize, &mmax, &mrastep, &mcycle);
00021
00022 #else
00023
00024 mcycle = 0;
00025 while ( ( mrastep & (1<<mcycle) ) && ( mcycle < mmax ) ) { mcycle++; }
00026
00027 #endif
00028
00029 }
|
1.3.6