Changeset 1079 for library/bdm/base

Show
Ignore:
Timestamp:
06/10/10 21:54:57 (14 years ago)
Author:
smidl
Message:

Changes in merger + change in loading ARX

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/user_info.cpp

    r1064 r1079  
    382382    if(element.exists("L")) { 
    383383        UI::from_setting(matrix.__L(), element["L"]); 
    384     } 
     384        } else {  
     385                throw  UISettingException ( "UIException: ldmat must contain matrix L.", element); 
     386        } 
    385387    if(element.exists("D")) { 
    386388        UI::from_setting(matrix.__D(), element["D"]); 
    387     } 
     389    } else { 
     390                throw  UISettingException ( "UIException: ldmat must contain vector D.", element); 
     391        } 
    388392    matrix.validate(); 
    389393}