private List<IComputationInstrumenter> createComputationInstrumenters() {
List<IComputationInstrumenter> result = new ArrayList<>();
for (Map.Entry<ComputationInstrumenterFactory, ParameterBlock> entry : computationInstrumenterFactories
.entrySet()) {
ParameterBlock sifParams = ParameterBlocks.newOrCopy(entry.getValue());
IComputationInstrumenter simulationInstrumenter =
entry.getKey().create(sifParams, SimSystem.getRegistry().createContext());
result.add(simulationInstrumenter);
}
return result;
}