}
+void VISU::ScalarMap_i::DoSetInput(Result_i* theResult){
+ if(theResult->GetInput() == NULL)
+ throw std::runtime_error("Mesh_i::Build - theResult->GetInput() == NULL !!!");
+ myField = theResult->GetInput()->GetField(myMeshName,myEntity,myFieldName);
+ if(myField == NULL)
+ throw std::runtime_error("There is no Field with the parameters !!!");
+ VISU_Convertor::TOutput *anOutput =
+ theResult->GetInput()->GetTimeStampOnMesh(myMeshName,myEntity,myFieldName,myIteration);
+ if(anOutput == NULL)
+ throw std::runtime_error("There is no TimeStamp with the parameters !!!");
+ myScalarMapPL->SetInput(anOutput);
+ myScalarMapPL->Build();
+}
+
+
void VISU::ScalarMap_i::DoHook(){
if(MYDEBUG) MESSAGE("ScalarMap_i::DoHook() - "<<myPipeLine);
if(!myPipeLine) {