* the processor to which the dummy simulation run shall be attached
* @return the simulation run associated with the processor
*/
protected ISimulationRun setSimulationRun(P processor) {
final P proc = processor;
ISimulationRun simRun = new DummySimRun() {
@Override
public Double getTime() {
return proc.getTime();
}
};