*/
@Deprecated
private HashMap<String, BenchmarkGoal> getInputBenchmarkGoals(){
HashMap<String,BenchmarkGoal> hmRet = new HashMap<String,BenchmarkGoal>();
if(this.lExperimentIDRef!=-1){
TestbedManager tbManager = TestbedManagerImpl.getInstance(true);
//get the Experiment this phase belongs to
Experiment thisExperiment = tbManager.getExperiment(this.lExperimentIDRef);
List<BenchmarkGoal> inputBMGoals = thisExperiment.getExperimentSetup().getAllAddedBenchmarkGoals();
if((inputBMGoals!=null)&&(inputBMGoals.size()>0)){
Iterator<BenchmarkGoal> itBMGoals = inputBMGoals.iterator();
while(itBMGoals.hasNext()){