try{
fis = new FileInputStream(fileName);
BufferedInputStream bis = new BufferedInputStream(fis);
Hessian2Input his = new Hessian2Input(bis);
Deflation dis = new Deflation();
return dis.unwrap(his);
}
catch(Exception e){
MessageGenerator.briefError("Problem opening stream for file: " + fileName);
}
return null;