r594: no message
[ctsim.git] / libctsim / projections.cpp
index 878f50c1fb04357363171c6847ab3836791eaa7b..7c092f5990af43a9e267092a1f4a92042083ecc8 100644 (file)
@@ -8,7 +8,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: projections.cpp,v 1.51 2001/03/02 02:08:14 kevin Exp $
+**  $Id: projections.cpp,v 1.52 2001/03/02 05:10:22 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -885,9 +885,80 @@ bool
 Projections::initFromSomatomAR_STAR (int iNViews, int iNDets, unsigned char* pData, unsigned long lDataLength)
 {
   init (iNViews, iNDets);
+  m_geometry = Scanner::GEOMETRY_EQUIANGULAR;
+  m_dFanBeamAngle = iNDets * convertDegreesToRadians (3.06976 / 60);
+  m_dFocalLength = 51;
+  m_dSourceDetectorLength = 89;
+  m_detInc = convertDegreesToRadians (3.06976 / 60);
+  m_detStart = -m_dFanBeamAngle / 2;
+  m_rotInc = TWOPI / static_cast<double>(iNViews);
+  m_rotStart = 0;
+  m_dViewDiameter = sin (m_dFanBeamAngle / 2) * m_dFocalLength * 2;
 
   if (iNDets != 1024)
     return false;
-  if (iNViews == 750 && 
+  bool bValid = (iNViews == 750 && lDataLength == 1560000L) || (iNViews == 950 && lDataLength == 1976000L) || (iNViews == 1500 && lDataLength == 3120000);
+  if (! bValid)
+    return false;
+
+  long lDataPos = 0;
+  for (int iv = 0; iv < iNViews; iv++) {
+    long* pLong = reinterpret_cast<long*>(pData + lDataPos+0);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pLong);
+#endif
+    long lProjNumber = *pLong;
+
+    pLong = reinterpret_cast<long*>(pData + lDataPos+20);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pLong);
+#endif
+    long lEscale = *pLong;
+
+    pLong = reinterpret_cast<long*>(pData + lDataPos+28);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pLong);
+#endif
+    long lTime = *pLong;
+
+    float* pFloat = reinterpret_cast<float*>(pData + lDataPos+4);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pFloat);
+#endif
+    double dAlpha = *pFloat;
+
+    pFloat = reinterpret_cast<float*>(pData + lDataPos+12);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pFloat);
+#endif
+    double dAlign = *pFloat;
+
+    pFloat = reinterpret_cast<float*>(pData + lDataPos+16);
+#ifndef WORDS_BIGENDIAN
+    SwapBytes4 (pFloat);
+#endif
+    double dMaxValue = *pFloat;
+
+    lDataPos += 32;
+    double dEScale =  pow (2.0, -lEscale);
+    double dBetaInc = convertDegreesToRadians (3.06976 / 60);
+    int iCenter = (iNDets + 1) / 2;
+
+    DetectorArray& detArray = getDetectorArray( iv );
+    detArray.setViewAngle (dAlpha);
+    DetectorValue* detval = detArray.detValues();
+
+    double dTempScale = 2294.4871 * dEScale;
+    for (int id = 0; id < iNDets; id++) {
+      int iV = pData[lDataPos+1] + 256 * pData[lDataPos];
+      if (iV > 32767)
+        iV = iV - 65536;
+      double dCosScale = cos ((id + 1 - iCenter) * dBetaInc);
+      detval[id] = iV / (dTempScale * dCosScale);
+      lDataPos += 2;
+    }
+  }
+
+  return true;
 }