// For the moment runStartDate format = yyyy-MMM-dd HH:mm:ss
DeviceProxy deviceProxy = TangoDeviceHelper.getDeviceProxy(scanserver);
if (deviceProxy != null) {
try {
DeviceAttribute attribute = deviceProxy
.read_attribute(CurrentScanDataModel.RUN_START_DATE);
String runStartDate = attribute.extractString();
// System.out.println("runStartDate=" + runStartDate);
if ((runStartDate != null) && !runStartDate.isEmpty()) {
int index = runStartDate.indexOf(" ");