Go to the source code of this file.
Functions | |
| void | rtrsmramcycle (const int &Msize, const int &mmax, const int &mrastep, int &mcycle) |
|
||||||||||||||||||||
|
Definition at line 15 of file rtrsmramcycle.cpp. References rtrsmramcycle_().
00021 {
00022 #ifdef STORM_USEF
00023 rtrsmramcycle_(
00024 &Msize,
00025 &mmax,
00026 &mrastep,
00027 &mcycle
00028 );
00029 #else
00030 mcycle = 0;
00031 while ( ( mrastep & (1<<mcycle) ) && ( mcycle < mmax ) ) { mcycle++; }
00032 #endif
00033 }
|
1.3.6