for (Configuration c : configs) {
String type = c.getType();
IConfig scan = null;
if (type.equals("Config1DImpl") || type.equals("Config1D")) {
scan = new ConfigImpl(); // new Config1D();
scan.setType(IConfig.ScanType.SCAN_1D);
} else if(type.equals("Config2DImpl") || type.equals("Config2D")) {
scan = new ConfigImpl(); // new Config1D();
scan.setType(IConfig.ScanType.SCAN_2D);
} else if(type.equals("ConfigHCSImpl") || type.equals("ConfigHCS")) {
scan = new ConfigImpl();
scan.setType(IConfig.ScanType.SCAN_HCS);
} else if(type.equals("ConfigKImpl") || type.equals("ConfigK")) {
scan = new ConfigImpl();
scan.setType(IConfig.ScanType.SCAN_K);
} else if(type.equals("ConfigEnergyImpl") || type.equals("ConfigEnergy")) {
scan = new ConfigImpl();
scan.setType(IConfig.ScanType.SCAN_ENERGY);
}
else if(type.equals("ConfigEnergy")) {
scan = new ConfigEnergyImpl();
scan.setType(IConfig.ScanType.SCAN_ENERGY);