aSize *= INCMEMORY;
aResult = VISU_PipeLine::CheckAvailableMemory(aSize);
if(MYDEBUG)
- MESSAGE("Vectors_i::IsPossible - CheckAvailableMemory = "<<float(aSize)<<"; aResult = "<<aResult);
+ MESSAGE("GaussPoints_i::IsPossible - CheckAvailableMemory = "<<float(aSize)<<"; aResult = "<<aResult);
}
+ return aResult;
}catch(std::exception& exc){
INFOS("Follow exception was occured :\n"<<exc.what());
}catch(...){
CORBA::Long theTimeStampNumber,
bool theIsMemoryCheck)
{
- size_t aResult = 0;
try{
- aResult = TSuperClass::IsPossible(theResult,
- theMeshName,
- theEntity,
- theFieldName,
- theTimeStampNumber,
- false);
+ size_t aResult = TSuperClass::IsPossible(theResult,
+ theMeshName,
+ theEntity,
+ theFieldName,
+ theTimeStampNumber,
+ false);
if(theIsMemoryCheck && aResult){
VISU::Result_i::TInput* anInput = theResult->GetInput();
float aSize = anInput->GetTimeStampSize(theMeshName,
if(MYDEBUG)
MESSAGE("Vectors_i::IsPossible - CheckAvailableMemory = "<<float(aSize)<<"; aResult = "<<aResult);
}
+ return aResult;
}catch(std::exception& exc){
INFOS("Follow exception was occured :\n"<<exc.what());
}catch(...){
INFOS("Unknown exception was occured!");
}
- return aResult;
+ return 0;
}
//---------------------------------------------------------------