From 6fba77a6d303c8d0b98d0b68073a3d0a5662909b Mon Sep 17 00:00:00 2001
From: Arthur Coolen <coolen@astron.nl>
Date: Mon, 31 Jan 2011 09:55:46 +0000
Subject: [PATCH] Bug1365: added angle for HBA tiles to Remote Station panels.

---
 MAC/Navigator2/scripts/readStationConfigs.ctl | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/MAC/Navigator2/scripts/readStationConfigs.ctl b/MAC/Navigator2/scripts/readStationConfigs.ctl
index ae1081c98a8..7697dd8157e 100644
--- a/MAC/Navigator2/scripts/readStationConfigs.ctl
+++ b/MAC/Navigator2/scripts/readStationConfigs.ctl
@@ -107,7 +107,7 @@ main()
     if (bDebug) DebugN("str1: ",str1," str2: ",str2);
     
     if (strtoupper(str1) == "NORMAL_VECTOR" ) {
-      if (strtoupper(str2) != "LBA" && strtoupper(str2) != "HBA0" && strtoupper(str2) != "HBA1" && strtoupper(str2) != HBA) {
+      if (strtoupper(str2) != "LBA" && strtoupper(str2) != "HBA0" && strtoupper(str2) != "HBA1" && strtoupper(str2) != "HBA") {
         DebugN("readStationConfigs.ctl | Unknown NORMAL_VECTOR target found: ", str2);
         continue;
       } else {
@@ -115,7 +115,7 @@ main()
         processNormalVector(strtoupper(str2));
       }
     } else if (strtoupper(str1) == "ROTATION_MATRIX" ) {
-      if (strtoupper(str2) != "LBA" && strtoupper(str2) != "HBA0" && strtoupper(str2) != "HBA1" && strtoupper(str2) != HBA) {
+      if (strtoupper(str2) != "LBA" && strtoupper(str2) != "HBA0" && strtoupper(str2) != "HBA1" && strtoupper(str2) != "HBA") {
         DebugN("readStationConfigs.ctl | Unknown ROTATION_MATRIX target found: ", str2);
         continue;
       } else {
@@ -179,17 +179,17 @@ main()
   if (deltasHBAFound && (rotMatHBAFound || rotMatHBA0Found || rotMatHBA1Found)) {
     calcRotated("HBA");
   } else {
-    DebugN("HBA values or HBA(0)(1) rotationmatrix missing, no rotated values calulated");
+    DebugN("HBA values or HBA(0)(1) rotationmatrix missing, no rotated values for HBA calulated");
   }
   if (deltasHBAFound && rotMatHBA0Found) {
     calcRotated("HBA0");
   } else {
-    DebugN("HBA values or HBA0 rotationmatrix missing, no rotated values calulated");
+    DebugN("HBA values or HBA0 rotationmatrix missing, no rotated values for HBA0 calulated");
   }
   if (deltasHBAFound && rotMatHBA1Found) {
     calcRotated("HBA1");
   } else {
-    DebugN("HBA values or HBA1 rotationmatrix missing, no rotated values calulated");
+    DebugN("HBA values or HBA1 rotationmatrix missing, no rotated values for HBA1 calulated");
   }
 
   
-- 
GitLab