Changeset 894 for applications
- Timestamp:
- 04/07/10 10:57:41 (15 years ago)
- Location:
- applications/pmsm
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/pmsm/filters.h
r871 r894 11 11 using namespace bdm; 12 12 13 / /* FAILURE :(((13 /* FAILURE :((( 14 14 class MPFpmsm: public MPF { 15 15 private: … … 186 186 UIREGISTER ( MPFpmsm ); 187 187 188 188 */ 189 189 190 190 /*!@}*/ -
applications/pmsm/pmsmDS.h
r871 r894 169 169 vec profM=vec("0.0"); 170 170 double tstep=1.0; 171 root.lookupValue( "tstep", tstep);171 UI::get( tstep, root, "tstep"); 172 172 UI::get( profW, root, "profileW" ); 173 173 UI::get( profM, root, "profileM" ); 174 174 set_profile (tstep , profW, profM); 175 175 176 string opts;177 if ( root.lookupValue( "log_level", opts ) )178 set_options(opts);179 176 } 180 177