Changeset 394 for applications

Show
Ignore:
Timestamp:
06/22/09 13:10:28 (16 years ago)
Author:
mido
Message:

1) UI_File renamed to UIFile
2) part UI's documentation
3) stat/mixtures.h renamed to stat/emix.h and related changes applied

Location:
applications
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/estimator.cpp

    r391 r394  
    6464        } 
    6565        fname = "arx_test.cfg"; 
    66         UI_File F ( fname ); 
     66        UIFile F ( fname ); 
    6767 
    6868        logger* L = UI::build<logger>( F, "logger"); 
  • applications/bdmtoolbox/mex/estimator.cpp

    r384 r394  
    2121         
    2222        printf("name: %s", fname.c_str()); 
    23         UI_File F ( fname.c_str()); 
     23        UIFile F ( fname.c_str()); 
    2424 
    2525        logger* L = UI::build<logger>( F, "logger"); 
  • applications/bdmtoolbox/mex/merger.cpp

    r393 r394  
    55int main() 
    66{ 
    7   UI_File Cfg("merger_mx.cfg"); 
     7  UIFile Cfg("merger_mx.cfg"); 
    88         
    99        // Sources 
  • applications/pmsm/TR2245/pmsm_wishart.cpp

    r384 r394  
    2626        if ( argc>1 ) {fname = argv[1]; } 
    2727        else { fname = "pmsm_wishart.cfg"; } 
    28         UI_File F ( fname ); 
     28        UIFile F ( fname ); 
    2929 
    3030        double h = 1e-6; 
  • applications/pmsm/TR2245/unitsteps.cpp

    r384 r394  
    3030        if ( argc>1 ) {fname = argv[1]; } 
    3131        else { fname = "unitsteps.cfg"; } 
    32         UI_File F ( fname ); 
     32        UIFile F ( fname ); 
    3333 
    3434        double h = 1e-6; 
  • applications/pmsm/TR2245/wishart.cpp

    r384 r394  
    2929        if ( argc>1 ) {fname = argv[1]; } 
    3030        else { fname = "unitsteps.cfg"; } 
    31         UI_File F ( fname ); 
     31        UIFile F ( fname ); 
    3232 
    3333        double h = 1e-6; 
  • applications/pmsm/pmsm_estim.cpp

    r384 r394  
    1818        if ( argc>1 ) {fname = argv[1]; } 
    1919        else { cout << "Missing configuration file.\n Usage: \n $> estimator config_file.cfg"<<endl; abort(); } 
    20         UI_File F ( fname ); 
     20        UIFile F ( fname ); 
    2121 
    2222        logger* L = UI::build <logger>( F, "logger" );