* @return the sim resource allocator
*/
public ISimulationResourceAllocator getSimResourceAllocator() {
ParameterBlock allocParams =
execParams.getSubBlock(ParameterUtils.SIM_RESOURCE_ALLOCATION);
SimulationResourceAllocatorFactory sraf =
SimSystem.getRegistry().getFactory(
AbstractSimulationResourceAllocatorFactory.class, allocParams);
return sraf.create(allocParams, SimSystem.getRegistry().createContext());
}