Index: /branches/eam_branches/ipp-20101103/Ohana/src/relastro/src/GetAstromError.c
===================================================================
--- /branches/eam_branches/ipp-20101103/Ohana/src/relastro/src/GetAstromError.c	(revision 29818)
+++ /branches/eam_branches/ipp-20101103/Ohana/src/relastro/src/GetAstromError.c	(revision 29819)
@@ -2,8 +2,8 @@
 
 float GetAstromError (Measure *measure, int mode) {
-
+  //BIG HACKXXXXXXXX
+  return 0.1;
   PhotCode *code;
   float dPobs, dPsys, dPtotal, dM, AS, MS;
-
   switch (mode) {
     case ERROR_MODE_RA:
@@ -19,5 +19,4 @@
       abort();
   }
-
   /* the astrometric errors are not being carried yet (but should be!) */
   /* we use the photometric mag error as a weighting term */
@@ -28,5 +27,4 @@
   dPsys = code[0].astromErrSys;
   dM    = measure[0].dM;
-  
   dPtotal = sqrt(SQ(dPsys) + AS*SQ(dPobs) + MS*SQ(dM));
 
@@ -35,5 +33,4 @@
 
   dPtotal = MAX (dPtotal, MIN_ERROR);
-
   return (dPtotal);
 }
