configFileName = System.getProperty("benchmark.config");
if (configFileName == null) {
throw new IOException("Property \"benchmark.config\" not set.");
}
ParamReader reader = new ParamReader(configFileName, true);
Document doc = reader.getDocument();
xp = reader.getXPath();
rootElement = doc.getDocumentElement();
String rootNS = rootElement.getNamespaceURI();
String rootName = rootElement.getLocalName();
if (FABANURI.equals(rootNS) && "runConfig".equals(rootName)) {